/* =============================================================================
   Kashi Interior — landing sections

   Source: Kashi Interior Claude Design/Kashi Interior Landing.dc.html
   Sections, in page order: section-heading (shared), hero, services-grid,
   projects-showcase, about-split, why-choose, testimonials, cta-band.

   THE FIDELITY RULE: every declaration below is copied character-for-character
   from the `style` / `style-hover` attribute it derives from. The only
   substitution is a colour literal for the --kashi-* token whose default IS
   that literal. Anything else carries a /* NET-NEW *​/ note.

   The design has no media queries. It is responsive through clamp(),
   grid auto-fit/auto-fill and flex-wrap alone. Nothing here adds one.
   ========================================================================== */

/* -----------------------------------------------------------------------------
   00 · SECTION HEADING — shared by services-grid, why-choose, testimonials

   `gap` and `margin-bottom` arrive as custom properties because the design uses
   three different values for each across this page alone, and the fidelity rule
   forbids merging clamp(32px,4vw,48px) with clamp(30px,4vw,40px).
   -------------------------------------------------------------------------- */

.k-shead {
	display: flex;
	flex-direction: column;
	gap: var(--kashi-shead-gap, 16px);
	margin-bottom: var(--kashi-shead-mb, 0);
}

/* .k-head (base layer) already supplies align-items/text-align for the centred
   variant; the left variant deliberately does not inherit it. */
.k-shead--left {
	align-items: flex-start;
	text-align: left;
}

.k-shead__title {
	font-family: var(--kashi-font-display);
	font-weight: 500;
	margin: 0;
}

/* services-grid */
.k-shead__title--xl {
	font-size: clamp(27px, 3.4vw, 44px);
	letter-spacing: -0.01em;
}

/* why-choose, testimonials */
.k-shead__title--lg {
	font-size: clamp(27px, 3.2vw, 42px);
}

/* -----------------------------------------------------------------------------
   01 · HERO
   -------------------------------------------------------------------------- */

.k-hero {
	position: relative;
	min-height: clamp(520px, 74vh, 700px);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.k-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.k-hero__scrim {
	position: absolute;
	inset: 0;
	background: var(--kashi-grad-hero);
}

.k-hero__inner {
	position: relative;
	width: 100%;
	max-width: var(--kashi-max);
	margin-inline: auto;
	padding: clamp(52px, 7vw, 96px) var(--kashi-gut) 0;
}

.k-hero__content {
	max-width: 560px;
}

.k-hero__eyebrow {
	margin-bottom: 22px;
}

.k-hero__title {
	font-family: var(--kashi-font-h1);
	font-size: clamp(34px, 4.6vw, 62px);
	line-height: 1.1;
	font-weight: 500;
	margin: 0 0 24px;
	letter-spacing: -0.01em;
	text-wrap: pretty;
}

.k-hero__lede {
	font-size: clamp(14.5px, 1.2vw, 17px);
	line-height: 1.7;
	color: var(--kashi-text-soft);
	margin: 0 0 34px;
	max-width: 430px;
	font-weight: 300;
}

.k-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
}

/* The ringed play glyph inside the "Watch Video" pill. */
.k-hero__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 1px solid var(--kashi-border-25);
}

.k-hero__trust {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: clamp(36px, 7vw, 88px);
	padding-bottom: clamp(56px, 11vw, 130px);
}

.k-hero__avatars {
	display: flex;
}

.k-hero__avatar {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	object-fit: cover;
	border: 2px solid #fff;
}

/* The source writes margin-left:-12px on avatars 2 and 3 only. */
.k-hero__avatar + .k-hero__avatar {
	margin-left: -12px;
}

.k-hero__trust-text {
	font-size: 14px;
	color: var(--kashi-text-soft);
	font-weight: 300;
}

/* Pinned to the same 1440px column edge the header uses — see
   --kashi-hero-stat-right in the token file. */
.k-hero__stats {
	position: absolute;
	right: var(--kashi-hero-stat-right);
	bottom: clamp(20px, 4vw, 56px);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 14px 0;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	padding: 20px 6px;
	border-radius: 4px;
	max-width: calc(100% - 32px);
}

.k-hero__stat {
	padding: 0 clamp(18px, 2.4vw, 30px);
	text-align: center;
}

/* The source omits the divider on the last cell rather than adding one to the
   first two — same result, expressed here so a fourth stat still behaves. */
.k-hero__stat:not(:last-child) {
	border-right: 1px solid var(--kashi-border-quiet);
}

.k-hero__stat-value {
	font-family: var(--kashi-font-display);
	font-size: 30px;
	line-height: 1.1;
}

.k-hero__stat-label {
	font-size: 12px;
	color: var(--kashi-text-dim);
	margin-top: 6px;
	font-weight: 300;
}

/* -----------------------------------------------------------------------------
   02 · SERVICES GRID
   -------------------------------------------------------------------------- */

.k-services {
	padding: clamp(48px, 6vw, 80px) var(--kashi-gut-maxmax) clamp(56px, 7vw, 96px);
	background: var(--kashi-cream);
}

.k-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--kashi-svc-min, 178px), 1fr));
	gap: clamp(14px, 1.6vw, 20px);
}

.k-svc-card {
	background: #fff;
	border: 1px solid var(--kashi-hairline-06);
	border-radius: 6px;
	padding: 30px 22px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	box-shadow: var(--kashi-shadow-card);
	transition: var(--kashi-lift);
}

/* NET-NEW: :focus-within pairs the design's :hover so a keyboard user reaching
   a link inside the card gets the same affordance. */
.k-svc-card:hover,
.k-svc-card:focus-within {
	transform: translateY(-6px);
	box-shadow: var(--kashi-shadow-card-hover);
}

.k-svc-card__title {
	font-size: 17px;
	font-weight: 600;
	margin: 0;
	line-height: 1.35;
	color: var(--kashi-text);
}

.k-svc-card__copy {
	font-size: 13px;
	line-height: 1.6;
	color: var(--kashi-text-dim);
	font-weight: 300;
	margin: 0;
}

/* -----------------------------------------------------------------------------
   03 · PROJECTS SHOWCASE
   -------------------------------------------------------------------------- */

/* The navy ground and white type come from .k-ground-navy in the base layer. */
.k-showcase__inner {
	max-width: var(--kashi-max);
	margin-inline: auto;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	align-items: center;
}

.k-showcase__intro {
	padding: clamp(44px, 5.5vw, 80px) var(--kashi-gut);
}

.k-showcase__eyebrow {
	margin-bottom: 22px;
}

.k-showcase__title {
	font-family: var(--kashi-font-display);
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.15;
	font-weight: 500;
	margin: 0 0 20px;
}

.k-showcase__lede {
	font-size: 16px;
	line-height: 1.7;
	color: var(--kashi-on-dark-65);
	font-weight: 300;
	margin: 0 0 34px;
	max-width: 300px;
}

/* Fixed 4x2 by design. It is one of the two constructs that genuinely break
   below ~360px; the opt-in kashi-fixes.css addresses that, not this file. */
.k-showcase__masonry {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, clamp(110px, 14vw, 200px));
	gap: 10px;
	padding: clamp(0px, 2vw, 24px) clamp(18px, 2.2vw, 24px) 24px;
}

.k-showcase__tile {
	margin: 0;
	overflow: hidden;
	border-radius: 3px;
}

/* Positional in the source: tiles 1 and 4 span two columns. */
.k-showcase__tile--wide {
	grid-column: span 2;
}

.k-showcase__tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: var(--kashi-zoom-slow);
}

/* This hover is transform-only. The project-card hover elsewhere in the site is
   `transform .6s ease, opacity .4s ease` + scale(1.06) + opacity:0.72.
   They are different effects and must not be merged.
   NET-NEW: the .k-showcase__tile:hover arm mirrors the source's img-level hover
   onto the figure, so the pointer never falls into a dead gap at the edges. */
.k-showcase__tile img:hover,
.k-showcase__tile:hover img {
	transform: scale(1.05);
}

/* -----------------------------------------------------------------------------
   04 · ABOUT SPLIT
   -------------------------------------------------------------------------- */

.k-about {
	padding: clamp(48px, 6vw, 84px) var(--kashi-gut-maxmax);
	background: var(--kashi-cream);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}

.k-about__image {
	width: 100%;
	height: clamp(260px, 30vw, 420px);
	object-fit: cover;
	border-radius: 4px;
}

.k-about__body {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(22px, 3vw, 32px);
	align-items: center;
}

/* One child today, but this is what gives the column its 300px flex basis. */
.k-about__col {
	flex: 1 1 300px;
	min-width: 0;
}

.k-about__eyebrow {
	margin-bottom: 20px;
}

.k-about__title {
	font-family: var(--kashi-font-display);
	font-size: clamp(27px, 3vw, 40px);
	line-height: 1.18;
	font-weight: 500;
	margin: 0 0 22px;
}

.k-about__copy {
	font-size: 16px;
	line-height: 1.75;
	color: var(--kashi-text-muted);
	font-weight: 300;
	margin: 0 0 26px;
}

/* .k-rule--60 supplies display/width/height/background. */
.k-about__rule {
	margin-bottom: 26px;
}

.k-about__features {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
}

.k-about__feature {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	font-weight: 500;
}

.k-about__feature .kashi-icon {
	color: var(--kashi-gold);
}

/* -----------------------------------------------------------------------------
   05 · WHY CHOOSE
   -------------------------------------------------------------------------- */

.k-why {
	padding: clamp(44px, 5.5vw, 64px) var(--kashi-gut-maxmax) clamp(52px, 6vw, 80px);
	background: var(--kashi-cream);
}

.k-why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	gap: clamp(14px, 1.8vw, 22px);
}

/* rgba(255,255,255,0.75) is written literally rather than as --kashi-on-dark-75:
   the token happens to hold the same value but names a text-on-dark colour, and
   this is a card fill on a light ground. */
.k-reason-card {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid var(--kashi-hairline-soft);
	border-radius: 6px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

/* The source declares no transition for this swap, so none is written. */
.k-reason-card:hover,
.k-reason-card:focus-within {
	background: #fff;
}

.k-reason-card .kashi-icon {
	color: var(--kashi-gold-muted);
}

.k-reason-card__title {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: var(--kashi-text);
}

.k-reason-card__copy {
	font-size: 13px;
	line-height: 1.6;
	color: var(--kashi-text-dim);
	font-weight: 300;
	margin: 0;
}

/* -----------------------------------------------------------------------------
   06 · TESTIMONIALS
   -------------------------------------------------------------------------- */

.k-testimonials {
	position: relative;
	padding: clamp(44px, 5.5vw, 64px) var(--kashi-gut-maxmax) clamp(56px, 6.5vw, 84px);
	overflow: hidden;
	background: var(--kashi-cream);
}

.k-testimonials__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.2;
}

.k-testimonials__scrim {
	position: absolute;
	inset: 0;
	background: var(--kashi-grad-testimonial);
}

.k-testimonials__inner {
	position: relative;
}

.k-testimonials__row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 2vw, 28px);
}

.k-testimonials__nav {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid var(--kashi-border-quiet);
	background: #fff;
	color: var(--kashi-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* NET-NEW: :focus-visible pairs the design's :hover — the arrows have no focus
   style of their own and are the carousel's only keyboard affordance. */
.k-testimonials__nav:hover,
.k-testimonials__nav:focus-visible {
	background: var(--kashi-gold);
	color: #fff;
	border-color: var(--kashi-gold);
}

.k-testi-card {
	width: min(600px, 100%);
	background: #fff;
	border-radius: 6px;
	padding: clamp(26px, 3vw, 34px) clamp(22px, 4vw, 48px) 30px;
	text-align: center;
	box-shadow: var(--kashi-shadow-quote);
}

/* NET-NEW: the slides are server-rendered and swapped by the `hidden`
   attribute. Stated explicitly so an Elementor or plugin reset that sets
   `div{display:block}` cannot resurrect a hidden slide. */
.k-testimonials__slide[hidden] {
	display: none;
}

.k-testi-card__mark {
	font-family: var(--kashi-font-display);
	font-size: 46px;
	line-height: 0.6;
	color: var(--kashi-gold);
	margin-bottom: 18px;
}

/* LOAD-BEARING: min-height:56px stops the card resizing as the carousel swaps
   between quotes of different lengths. Do not drop it. */
.k-testi-card__quote {
	font-size: 15px;
	line-height: 1.8;
	color: var(--kashi-text-body);
	font-weight: 300;
	margin: 0 0 18px;
	min-height: 56px;
}

.k-testi-card__stars {
	color: var(--kashi-gold);
	letter-spacing: 0.2em;
	font-size: 15px;
	margin-bottom: 14px;
}

.k-testi-card__author {
	font-size: 15px;
	font-weight: 600;
}

.k-testi-card__city {
	font-size: 13px;
	color: var(--kashi-text-faint);
	font-weight: 300;
	margin-top: 4px;
}

.k-testimonials__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.k-testimonials__dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	border: none;
	padding: 0;
	cursor: pointer;
	background: rgba(11, 27, 51, 0.2);
}

.k-testimonials__dot.is-active {
	background: var(--kashi-gold);
}

/* -----------------------------------------------------------------------------
   07 · CTA BAND
   -------------------------------------------------------------------------- */

.k-cta-band {
	padding: clamp(42px, 5vw, 56px) var(--kashi-gut-maxmax);
	text-align: center;
}

.k-cta-band--navy {
	background: var(--kashi-navy-deep);
	color: #fff;
}

/* NET-NEW: Elementor widget #7 exposes a ground control. Only the ground and
   the two type colours move; every metric stays the design's. */
.k-cta-band--cream {
	background: var(--kashi-cream);
	color: var(--kashi-text);
}

.k-cta-band--shell {
	background: var(--kashi-shell);
	color: var(--kashi-text);
}

.k-cta-band__title {
	font-family: var(--kashi-font-display);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 500;
	margin: 0 0 14px;
}

.k-cta-band__lede {
	font-size: 15px;
	color: var(--kashi-on-dark-soft);
	font-weight: 300;
	margin: 0 0 26px;
}

.k-cta-band--cream .k-cta-band__lede,
.k-cta-band--shell .k-cta-band__lede {
	color: var(--kashi-text-muted);
}

.k-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 16px;
}
