/* Sewarsa — hero mengikuti mockup referensi */

:root {
	--red: #d94f3d;
	--red-hover: #c44535;
	--white: #fff;
	--cream: #fff8e7;
	--teal: #4e7e95;
	--teal-hover: #426d82;
	--peach-accent: #f0a87a;
	--orange: #e89550;
	--orange-hover: #d48442;
	--airmail-blue: #3d7a9e;
	--contact-orange: #ff862f;
	--contact-gold: #f1c84b;
	--radius-pill: 999px;
	--radius-img: 24px;
	--font-head: "Fredoka", sans-serif;
	--font-ui: "Plus Jakarta Sans", sans-serif;
	--heading-size: clamp(2rem, 4.5vw, 3rem);
	--heading-line-height: 1.12;
	--content-max: 1320px;
	--navbar-expand: 20px;
	--space-page-x: 16px;
	--space-section-y: 48px;
	--tap-min: 48px;
	--bp-sm: 600px;
	--bp-md: 768px;
	--bp-lg: 900px;
}

@media (min-width: 600px) {
	:root {
		--space-page-x: 24px;
		--radius-img: 28px;
	}
}

@media (min-width: 900px) {
	:root {
		--space-page-x: clamp(24px, 4vw, 56px);
		--space-section-y: clamp(56px, 8vw, 96px);
		--radius-img: 32px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-ui);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

body.sewarsa-front-page {
	overflow-x: hidden;
	scroll-padding-top: 88px;
}

[id] {
	scroll-margin-top: 88px;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Kolom konten — lebar mengikuti gutter halaman */
.sewarsa-hero__main,
.sewarsa-about__inner,
.sewarsa-products__inner,
.sewarsa-portfolio__inner,
.sewarsa-clients__logos,
.sewarsa-testimonials__inner,
.sewarsa-contact__inner,
.sewarsa-site-footer__inner,
.sewarsa-site-footer__copy {
	width: min(var(--content-max), calc(100% - 2 * var(--space-page-x)));
	margin-inline: auto;
}

/* ===================== HERO ===================== */

.sewarsa-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	min-height: 100dvh;
	padding:
		max(12px, env(safe-area-inset-top, 0px))
		max(0px, env(safe-area-inset-right, 0px))
		max(20px, env(safe-area-inset-bottom, 0px))
		max(0px, env(safe-area-inset-left, 0px));
	overflow: hidden;
	background-color: #fff8ed;
	background-image: url("../images/hero-bg.svg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

@media (min-width: 900px) {
	.sewarsa-hero {
		height: 65svh;
		min-height: 0;
		max-height: 65svh;
		padding:
			clamp(24px, 3vh, 36px)
			0
			clamp(24px, 3vh, 32px);
	}
}

body.admin-bar.sewarsa-front-page .sewarsa-hero {
	min-height: calc(100svh - 32px);
	min-height: calc(100dvh - 32px);
	padding-top: calc(max(12px, env(safe-area-inset-top, 0px)) + 32px);
}

@media (min-width: 900px) {
	body.admin-bar.sewarsa-front-page .sewarsa-hero {
		height: calc(65svh - 32px);
		min-height: 0;
		max-height: calc(65svh - 32px);
		padding-top: calc(clamp(24px, 3vh, 36px) + 32px);
	}
}

.sewarsa-hero > * {
	position: relative;
	z-index: 1;
}

/* ----- Header pill — sedikit lebih lebar dari kolom konten ----- */
.sewarsa-header {
	width: min(
		calc(var(--content-max) + 2 * var(--navbar-expand)),
		calc(100% - 2 * max(12px, calc(var(--space-page-x) - var(--navbar-expand))))
	);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	background: #fff;
	border-radius: var(--radius-pill);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
	.sewarsa-header {
		gap: 16px;
		padding: 14px clamp(20px, 3vw, 36px);
	}
}

.sewarsa-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	font-weight: 700;
	font-size: clamp(15px, 1.5vw, 18px);
	letter-spacing: 0.1em;
	color: var(--red);
}

.sewarsa-logo__icon {
	width: 28px;
	height: auto;
}

/* Hamburger — mobile default, disembunyikan di desktop */
.sewarsa-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	flex-shrink: 0;
	width: var(--tap-min);
	height: var(--tap-min);
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.sewarsa-menu-toggle__bar {
	width: 24px;
	height: 3px;
	margin: 0 auto;
	background: var(--red);
	border-radius: 2px;
	transition: transform 0.2s, opacity 0.2s;
}

.sewarsa-menu-toggle[aria-expanded="true"] .sewarsa-menu-toggle__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.sewarsa-menu-toggle[aria-expanded="true"] .sewarsa-menu-toggle__bar:nth-child(2) {
	opacity: 0;
}

.sewarsa-menu-toggle[aria-expanded="true"] .sewarsa-menu-toggle__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Nav — mobile: overlay fullscreen (default) */
.sewarsa-nav {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	background: rgba(255, 250, 245, 0.98);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s, visibility 0.25s;
}

.sewarsa-nav.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.sewarsa-nav__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sewarsa-nav__list li + li {
	margin-top: 1.25rem;
}

.sewarsa-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: var(--tap-min);
	padding: 4px 12px;
	font-family: var(--font-head);
	font-size: clamp(1.35rem, 5vw, 1.65rem);
	font-weight: 600;
	color: var(--red);
	transition: opacity 0.2s;
}

.sewarsa-nav__list a:hover {
	opacity: 0.7;
}

.sewarsa-nav__list li {
	margin: 0;
}

@media (min-width: 900px) {
	.sewarsa-menu-toggle {
		display: none;
	}

	.sewarsa-nav {
		position: static;
		flex: 1;
		justify-content: flex-end;
		min-width: 0;
		background: transparent;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.sewarsa-nav__list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: clamp(12px, 2.5vw, 32px);
	}

	.sewarsa-nav__list li + li {
		margin-top: 0;
	}

	.sewarsa-nav__list a {
		min-height: 0;
		padding: 0;
		font-family: var(--font-ui);
		font-size: clamp(14px, 1.2vw, 16px);
		white-space: nowrap;
	}
}

/* ----- Main: 1 kolom mobile, 2 kolom desktop ----- */
.sewarsa-hero__main {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 24px;
	margin-block-start: 20px;
	min-height: 0;
}

@media (min-width: 900px) {
	.sewarsa-hero__main {
		grid-template-columns: minmax(280px, 40%) 1fr;
		gap: clamp(20px, 2.5vw, 40px);
		margin-top: clamp(12px, 2vh, 24px);
	}
}

/* ----- Teks kiri ----- */
.sewarsa-hero__content {
	align-self: center;
	text-align: center;
}

@media (min-width: 900px) {
	.sewarsa-hero__content {
		text-align: left;
	}
}

.sewarsa-hero__title {
	margin: 0 0 20px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--heading-size);
	line-height: var(--heading-line-height);
	color: var(--white);
	text-wrap: balance;
	text-shadow:
		0 2px 4px rgba(60, 30, 10, 0.3),
		0 6px 20px rgba(80, 40, 20, 0.2);
}

@media (min-width: 600px) {
	.sewarsa-hero__title {
		margin-bottom: 24px;
	}
}

@media (min-width: 900px) {
	.sewarsa-hero__title {
		margin-bottom: 28px;
	}
}

.sewarsa-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--tap-min);
	padding: 12px 32px;
	font-weight: 600;
	font-size: 16px;
	color: var(--white);
	background: var(--red);
	border-radius: var(--radius-pill);
	box-shadow: 0 4px 16px rgba(217, 79, 61, 0.45);
	transition: background 0.2s;
}

.sewarsa-cta:hover {
	background: var(--red-hover);
}

/* ----- Galeri hero: grid 2×2 mobile, orbit desktop ----- */
.sewarsa-gallery {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	align-self: center;
}

.sewarsa-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
}

.sewarsa-gallery__cell {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-img);
	box-shadow: 0 6px 20px rgba(50, 25, 10, 0.12);
	aspect-ratio: 4 / 3;
}

.sewarsa-gallery__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 600px) {
	.sewarsa-gallery__grid {
		gap: 12px;
	}

	.sewarsa-gallery {
		max-width: 560px;
	}
}

@media (min-width: 900px) {
	.sewarsa-gallery {
		--gallery-gap: 12px;
		--gallery-col1: calc((100% - var(--gallery-gap)) * 0.575);
		--gallery-col2: calc((100% - var(--gallery-gap)) * 0.425);
		--gallery-row1: calc((100% - var(--gallery-gap)) * 0.32);
		--gallery-row2: calc((100% - var(--gallery-gap)) * 0.68);
		position: relative;
		width: 100%;
		max-width: none;
		height: min(460px, calc(65svh - 120px));
		max-height: 52vh;
		margin: 0;
	}

	.sewarsa-gallery__grid {
		display: block;
		position: relative;
		height: 100%;
	}

	.sewarsa-gallery__cell {
		position: absolute;
		min-width: 0;
		min-height: 0;
		aspect-ratio: auto;
		transition:
			left 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			top 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			width 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			height 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			box-shadow 0.9s ease,
			z-index 0s linear 0.45s;
		will-change: left, top, width, height, transform;
	}

	.sewarsa-gallery__img {
		position: absolute;
		inset: 0;
	}

	.sewarsa-gallery__cell--slot-0 {
		left: 0;
		top: 0;
		width: var(--gallery-col1);
		height: var(--gallery-row1);
		z-index: 3;
		transform: scale(1);
	}

	.sewarsa-gallery__cell--slot-1 {
		left: 0;
		top: calc(var(--gallery-row1) + var(--gallery-gap));
		width: var(--gallery-col1);
		height: var(--gallery-row2);
		z-index: 1;
		transform: scale(0.94);
	}

	.sewarsa-gallery__cell--slot-2 {
		left: calc(var(--gallery-col1) + var(--gallery-gap));
		top: 0;
		width: var(--gallery-col2);
		height: var(--gallery-row1);
		z-index: 1;
		transform: scale(0.94);
	}

	.sewarsa-gallery__cell--slot-3 {
		left: calc(var(--gallery-col1) + var(--gallery-gap));
		top: calc(var(--gallery-row1) + var(--gallery-gap));
		width: var(--gallery-col2);
		height: var(--gallery-row2);
		z-index: 3;
		transform: scale(1);
	}

	.sewarsa-gallery__cell.is-orbit-front {
		z-index: 4;
		transition:
			left 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			top 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			width 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			height 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
			box-shadow 0.9s ease,
			z-index 0s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sewarsa-gallery__cell {
		transition: none;
		will-change: auto;
	}
}

/* ===================== ABOUT US ===================== */

.sewarsa-about {
	position: relative;
	background: var(--cream);
}

.sewarsa-about__accent {
	width: 100%;
	height: 6px;
}

.sewarsa-about__accent--top {
	background: var(--peach-accent);
}

.sewarsa-about__accent--bottom {
	background: var(--teal);
}

.sewarsa-about__inner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 32px;
	padding-block: var(--space-section-y);
}

@media (min-width: 900px) {
	.sewarsa-about__inner {
		grid-template-columns: minmax(280px, 42%) 1fr;
		gap: clamp(32px, 4vw, 64px);
	}
}

.sewarsa-about__title {
	margin: 0 0 24px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--heading-size);
	line-height: var(--heading-line-height);
	color: #1a1a1a;
}

.sewarsa-about__text {
	margin: 0 0 24px;
	max-width: 42ch;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.65;
	color: #333;
}

@media (min-width: 900px) {
	.sewarsa-about__text {
		margin-bottom: 32px;
		max-width: 36ch;
		font-size: clamp(0.95rem, 1.1vw, 1.05rem);
	}
}

.sewarsa-about__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--tap-min);
	padding: 12px 32px;
	font-weight: 600;
	font-size: 16px;
	color: var(--white);
	background: var(--teal);
	border-radius: var(--radius-pill);
	box-shadow: 0 4px 16px rgba(78, 126, 149, 0.35);
	transition: background 0.2s;
}

.sewarsa-about__cta:hover {
	background: var(--teal-hover);
}

/* Kolase about: bento mobile, overlap desktop */
.sewarsa-about__collage {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

.sewarsa-about__photo {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-img);
	box-shadow: 0 6px 20px rgba(40, 30, 20, 0.1);
	aspect-ratio: 4 / 3;
}

.sewarsa-about__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sewarsa-about__photo--top {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 10;
}

.sewarsa-about__photo--left {
	grid-column: 1;
}

.sewarsa-about__photo--right {
	grid-column: 2;
}

@media (min-width: 900px) {
	.sewarsa-about__collage {
		display: block;
		position: relative;
		min-height: 460px;
		max-width: 620px;
		margin-left: auto;
	}

	.sewarsa-about__photo {
		position: absolute;
		aspect-ratio: auto;
		box-shadow: 0 10px 32px rgba(40, 30, 20, 0.12);
	}

	.sewarsa-about__photo--top {
		top: 0;
		right: 4%;
		width: min(48%, 280px);
		aspect-ratio: 4 / 3;
		z-index: 2;
	}

	.sewarsa-about__photo--left {
		bottom: 0;
		left: 0;
		width: min(42%, 240px);
		aspect-ratio: 3 / 4;
		z-index: 3;
	}

	.sewarsa-about__photo--right {
		right: 0;
		bottom: 6%;
		width: min(62%, 380px);
		aspect-ratio: 5 / 3;
		z-index: 1;
	}
}

/* ===================== PRODUK KAMI ===================== */

.sewarsa-products {
	background: var(--teal);
	color: var(--white);
}

.sewarsa-products__inner {
	padding-block: var(--space-section-y);
	text-align: center;
}

.sewarsa-products__title {
	margin: 0 0 clamp(40px, 6vw, 56px);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--heading-size);
	line-height: var(--heading-line-height);
	color: var(--white);
}

/* Produk — grid 2 kolom mobile, lengkungan desktop */
.sewarsa-products__arc {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 16px;
	width: min(100%, 420px);
	height: auto;
	margin: 0 auto 28px;
}

.sewarsa-products__item {
	position: static;
	transform: none;
	width: auto;
	justify-self: center;
}

.sewarsa-products__item--3 {
	grid-column: 1 / -1;
}

.sewarsa-products__item--1 {
	order: 1;
}

.sewarsa-products__item--2 {
	order: 2;
}

.sewarsa-products__item--3 {
	order: 0;
}

.sewarsa-products__item--4 {
	order: 3;
}

.sewarsa-products__item--5 {
	order: 4;
}

@media (min-width: 900px) {
	.sewarsa-products__arc {
		position: relative;
		display: block;
		width: min(100%, 1020px);
		height: clamp(380px, 52vw, 500px);
		margin-bottom: clamp(28px, 4vw, 40px);
	}

	.sewarsa-products__item {
		position: absolute;
		transform: translate(-50%, 0);
		width: clamp(140px, 18vw, 200px);
		order: unset;
	}

	.sewarsa-products__item--3 {
		grid-column: auto;
	}

	.sewarsa-products__item--1 {
		left: 10%;
		top: 62%;
	}

	.sewarsa-products__item--2 {
		left: 28%;
		top: 28%;
	}

	.sewarsa-products__item--3 {
		left: 50%;
		top: 0;
	}

	.sewarsa-products__item--4 {
		left: 72%;
		top: 28%;
	}

	.sewarsa-products__item--5 {
		left: 90%;
		top: 62%;
	}
}

.sewarsa-products__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	color: inherit;
	transition: transform 0.2s, opacity 0.2s;
}

.sewarsa-products__link:hover {
	transform: translateY(-4px);
	opacity: 0.92;
}

.sewarsa-products__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(100px, 28vw, 140px);
	height: clamp(100px, 28vw, 140px);
	border-radius: 50%;
	background: #ff862f;
	color: var(--cream);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

@media (min-width: 900px) {
	.sewarsa-products__icon {
		width: clamp(120px, 16vw, 168px);
		height: clamp(120px, 16vw, 168px);
	}
}

.sewarsa-products__icon img {
	display: block;
	width: 78%;
	height: auto;
	max-height: 88%;
	object-fit: contain;
}

.sewarsa-products__label {
	display: block;
	max-width: 12em;
	font-size: clamp(0.85rem, 1.2vw, 1rem);
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
}

.sewarsa-products__cta-wrap {
	margin: 0;
}

.sewarsa-products__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--tap-min);
	padding: 12px 36px;
	font-weight: 600;
	font-size: 16px;
	color: var(--white);
	background: var(--orange);
	border-radius: var(--radius-pill);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	transition: background 0.2s;
}

.sewarsa-products__cta:hover {
	background: var(--orange-hover);
}

/* ===================== PORTOFOLIO ===================== */

.sewarsa-portfolio {
	background: var(--cream);
}

.sewarsa-portfolio__accent {
	width: 100%;
	height: 6px;
	background: var(--teal);
}

.sewarsa-portfolio__inner {
	padding-block: var(--space-section-y);
}

.sewarsa-portfolio__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: clamp(32px, 5vw, 48px);
}

@media (min-width: 768px) {
	.sewarsa-portfolio__intro {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: clamp(24px, 4vw, 48px);
	}
}

.sewarsa-portfolio__text {
	flex: 1;
	max-width: 42ch;
	margin: 0;
	font-size: clamp(1rem, 1.35vw, 1.15rem);
	font-weight: 600;
	line-height: 1.55;
	color: var(--orange);
}

.sewarsa-portfolio__headline {
	flex-shrink: 0;
	margin: 0;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--heading-size);
	line-height: var(--heading-line-height);
	color: var(--red);
	text-wrap: balance;
	transition: opacity 0.2s;
}

@media (min-width: 768px) {
	.sewarsa-portfolio__headline {
		white-space: nowrap;
	}
}

.sewarsa-portfolio__headline:hover {
	opacity: 0.8;
}

.sewarsa-portfolio__gallery {
	display: flex;
	gap: 12px;
	margin: 0;
	padding: 4px 0 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.sewarsa-portfolio__gallery::-webkit-scrollbar {
	display: none;
}

.sewarsa-portfolio__item {
	flex: 0 0 min(78vw, 300px);
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-img);
	box-shadow: 0 6px 20px rgba(40, 30, 20, 0.1);
	scroll-snap-align: start;
}

.sewarsa-portfolio__img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 600px) {
	.sewarsa-portfolio__gallery {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: clamp(12px, 2vw, 16px);
		margin: 0;
		padding: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.sewarsa-portfolio__item {
		flex: none;
		scroll-snap-align: none;
	}

	.sewarsa-portfolio__img {
		aspect-ratio: 3 / 4;
	}
}

@media (min-width: 768px) {
	.sewarsa-portfolio__gallery {
		grid-template-columns: repeat(4, 1fr);
		gap: clamp(12px, 2vw, 20px);
	}
}

/* ===================== KLIEN ===================== */

.sewarsa-clients {
	position: relative;
	overflow: hidden;
	background: var(--red);
	padding-block: var(--space-section-y);
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 900px) {
	.sewarsa-clients {
		min-height: clamp(360px, 44vw, 520px);
	}
}

/* 3 oval lonjong cream */
.sewarsa-clients__shapes {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(98%, var(--content-max));
	height: 118%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.sewarsa-clients__oval {
	flex: 1;
	min-width: 0;
	height: 100%;
	margin: 0 -3%;
	background: var(--cream);
	border-radius: 50%;
}

.sewarsa-clients__logos {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	justify-items: center;
	gap: 20px 12px;
	padding: 0;
	list-style: none;
}

@media (min-width: 600px) {
	.sewarsa-clients__logos {
		grid-template-columns: repeat(3, 1fr);
		gap: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 28px);
	}
}

@media (min-width: 900px) {
	.sewarsa-clients__logos {
		grid-template-columns: repeat(6, 1fr);
		row-gap: clamp(20px, 3vw, 36px);
		column-gap: clamp(16px, 2vw, 24px);
	}
}

.sewarsa-clients__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: clamp(120px, 11vw, 160px);
}

.sewarsa-clients__logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s, transform 0.2s;
}

.sewarsa-clients__logo a:hover {
	opacity: 0.85;
	transform: scale(1.04);
}

.sewarsa-clients__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: clamp(40px, 10vw, 56px);
	height: auto;
	object-fit: contain;
}

@media (min-width: 900px) {
	.sewarsa-clients__logo img {
		max-height: clamp(48px, 5vw, 72px);
	}
}

/* ===================== TESTIMONI ===================== */

.sewarsa-testimonials {
	background: var(--cream);
}

.sewarsa-testimonials__inner {
	padding-block: var(--space-section-y);
}

.sewarsa-testimonials__title {
	margin: 0 0 clamp(40px, 6vw, 56px);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--heading-size);
	line-height: var(--heading-line-height);
	text-align: center;
	color: var(--red);
}

.sewarsa-testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 900px) {
	.sewarsa-testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: clamp(24px, 3vw, 32px);
		align-items: stretch;
	}
}

.sewarsa-testimonial {
	margin: 0;
}

/* Amplop airmail — border = padding + pola garis miring terputus */
.sewarsa-testimonial__envelope {
	height: 100%;
	padding: 15px;
	background: repeating-linear-gradient(
		-45deg,
		var(--red) 0 8px,
		var(--cream) 8px 12px,
		var(--airmail-blue) 12px 20px,
		var(--cream) 20px 24px
	);
}

.sewarsa-testimonial__sheet {
	height: 100%;
	padding: clamp(24px, 3vw, 36px);
	background: var(--cream);
}

.sewarsa-testimonial__quote {
	margin: 0 0 20px;
	font-size: clamp(0.9rem, 1.1vw, 1rem);
	font-weight: 500;
	line-height: 1.65;
	color: var(--red);
}

.sewarsa-testimonial__author {
	margin: 0;
	font-size: clamp(0.85rem, 1vw, 0.95rem);
	font-weight: 600;
	font-style: normal;
	line-height: 1.4;
	color: var(--red);
}

/* ===================== KONTAK ===================== */

.sewarsa-contact {
	position: relative;
	overflow: hidden;
	color: var(--white);
	background-color: #ff862f;
	background-image: url("../images/contact-bg.svg");
	background-repeat: no-repeat;
	background-position: left 100%;
	background-size: cover;
	min-height: clamp(520px, 78vh, 680px);
}

.sewarsa-contact__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
	padding-block: var(--space-section-y);
}

@media (min-width: 900px) {
	.sewarsa-contact__inner {
		grid-template-columns: minmax(300px, 1fr) minmax(320px, 480px);
		gap: clamp(40px, 6vw, 72px);
		padding-bottom: clamp(72px, 10vw, 120px);
	}
}

.sewarsa-contact__promo {
	position: relative;
	z-index: 2;
	max-width: min(100%, 520px);
	padding-bottom: 8px;
}

@media (min-width: 900px) {
	.sewarsa-contact__promo {
		align-self: start;
		margin-top: 0;
		padding-right: clamp(24px, 4vw, 56px);
	}
}

.sewarsa-contact__title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--heading-size);
	line-height: var(--heading-line-height);
	color: var(--white);
}

.sewarsa-contact__title-line {
	display: inline-block;
}

.sewarsa-contact__form-wrap {
	padding: clamp(28px, 4vw, 40px);
	background: var(--white);
	border-radius: var(--radius-img);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.sewarsa-contact__notice {
	margin: 0 0 20px;
	padding: 12px 16px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 12px;
}

.sewarsa-contact__notice--success {
	color: #1e6b3a;
	background: #e8f7ee;
}

.sewarsa-contact__notice--error {
	color: #8b2e2e;
	background: #fdecec;
}

.sewarsa-contact__form {
	margin: 0;
}

.sewarsa-contact__field {
	margin: 0 0 18px;
}

.sewarsa-contact__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #222;
}

.sewarsa-contact__field input,
.sewarsa-contact__field textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--font-ui);
	font-size: 16px;
	color: #222;
	background: var(--white);
	border: 1.5px solid #c8c8c8;
	border-radius: 8px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.sewarsa-contact__field input:focus,
.sewarsa-contact__field textarea:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(78, 126, 149, 0.2);
}

.sewarsa-contact__field textarea {
	min-height: 120px;
	resize: vertical;
}

.sewarsa-contact__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.sewarsa-contact__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: var(--tap-min);
	margin-top: 8px;
	padding: 14px 24px;
	font-family: var(--font-ui);
	font-size: 1.05rem;
	font-weight: 700;
	color: #1a1a1a;
	background: var(--contact-gold);
	border: 0;
	border-radius: 14px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: background 0.2s, transform 0.15s;
}

.sewarsa-contact__submit:hover {
	background: #e8bc3f;
}

.sewarsa-contact__submit:active {
	transform: scale(0.99);
}

/* ----- Halaman lain ----- */
.sewarsa-site-main {
	max-width: 720px;
	margin: 0 auto;
	padding: 48px 24px;
}

/* ===================== FOOTER KONTAK ===================== */

.sewarsa-site-footer {
	background: var(--teal);
	color: var(--white);
}

.sewarsa-site-footer__accent {
	width: 100%;
	height: 6px;
	background: var(--contact-orange);
}

.sewarsa-site-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
	padding-block: var(--space-section-y) 32px;
}

@media (min-width: 900px) {
	.sewarsa-site-footer__inner {
		grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
		gap: clamp(40px, 6vw, 64px);
		align-items: center;
	}
}

.sewarsa-site-footer__title {
	position: relative;
	margin: 0 0 clamp(28px, 4vw, 40px);
	padding-bottom: 14px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--heading-size);
	line-height: var(--heading-line-height);
	color: var(--white);
}

.sewarsa-site-footer__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 72px;
	height: 5px;
	background: #5eb0e8;
	border-radius: 3px;
}

.sewarsa-site-footer__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sewarsa-site-footer__item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.sewarsa-site-footer__icon-wrap {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--white);
	opacity: 0.92;
}

.sewarsa-site-footer__icon {
	display: block;
	width: 22px;
	height: 22px;
}

.sewarsa-site-footer__item:hover .sewarsa-site-footer__icon-wrap {
	opacity: 1;
}

.sewarsa-site-footer__link {
	font-size: clamp(0.95rem, 1.15vw, 1.05rem);
	font-weight: 500;
	color: var(--white);
	transition: opacity 0.2s;
}

.sewarsa-site-footer__link:hover {
	opacity: 0.85;
}

.sewarsa-site-footer__map {
	overflow: hidden;
	border-radius: var(--radius-img);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.sewarsa-site-footer__map-frame {
	display: block;
	width: 100%;
	height: clamp(260px, 32vw, 360px);
	border: 0;
}

.sewarsa-site-footer__copy {
	margin: 0;
	padding: 0 0 24px;
	font-size: 13px;
	text-align: center;
	color: rgba(255, 255, 255, 0.75);
}

.sewarsa-footer {
	text-align: center;
	padding: 24px;
	font-size: 14px;
	color: #666;
}

/* Floating WhatsApp */
.sewarsa-wa-float {
	position: fixed;
	right: max(16px, env(safe-area-inset-right, 0px));
	bottom: max(20px, env(safe-area-inset-bottom, 0px));
	z-index: 9990;
	pointer-events: none;
}

.sewarsa-wa-float__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sewarsa-wa-float__btn:hover {
	transform: scale(1.06);
	background: #20bd5a;
	box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.sewarsa-wa-float__btn:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.sewarsa-wa-float__icon {
	display: block;
}

.sewarsa-wa-float__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #25d366;
	opacity: 0.45;
	animation: sewarsa-wa-pulse 2.2s ease-out infinite;
	pointer-events: none;
}

@keyframes sewarsa-wa-pulse {
	0% {
		transform: scale(1);
		opacity: 0.45;
	}
	70% {
		transform: scale(1.45);
		opacity: 0;
	}
	100% {
		transform: scale(1.45);
		opacity: 0;
	}
}

.sewarsa-wa-float__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.sewarsa-wa-float__pulse {
		animation: none;
	}

	.sewarsa-wa-float__btn {
		transition: none;
	}
}
