/* =========================================================================
   Sea Winds — main.css
   Premium custom theme styles for Sea Winds BTL Advertising LLC
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ---------------------------------------------------------------------- */
:root {
	--charcoal: #111111;
	--charcoal-90: #0d0d0d;
	--charcoal-80: #1a1a1a;
	--warm-white: #f7f5f0;
	--gold: #c9a96e;
	--gold-bright: #dcc08a;
	--taupe: #d8d0c4;
	--whatsapp: #25d366;

	--gold-line: rgba(201, 169, 110, 0.2);
	--gold-line-soft: rgba(201, 169, 110, 0.15);
	--gold-line-strong: rgba(201, 169, 110, 0.4);
	--white-soft: rgba(255, 255, 255, 0.04);

	--font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--container: 1240px;
	--radius-sm: 12px;
	--radius-md: 16px;
	--radius-lg: 20px;
	--radius-xl: 24px;

	--header-h: 100px;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ---------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	color: var(--charcoal);
	background: var(--charcoal);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--gold);
	text-decoration: none;
	transition: color 0.3s var(--ease);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	-webkit-user-drag: none;
	user-select: none;
}

/* Re-enable interaction on images wrapped by links / interactive elements. */
a img,
button img,
.sw-lightbox img {
	pointer-events: auto;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sw-skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	clip: auto;
	z-index: 100000;
	background: var(--gold);
	color: var(--charcoal);
	padding: 10px 18px;
	border-radius: 8px;
}

/* -------------------------------------------------------------------------
   3. Layout helpers
   ---------------------------------------------------------------------- */
.sw-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

.sw-section {
	padding: 110px 0;
	position: relative;
}

.sw-section--light {
	background: var(--warm-white);
	color: var(--charcoal);
}

.sw-section--dark {
	background: var(--charcoal);
	color: var(--warm-white);
}

.sw-section--darker {
	background: var(--charcoal-80);
	color: var(--warm-white);
}

.sw-main {
	display: block;
}

.sw-section__head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 60px;
}

.sw-eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
}

.sw-eyebrow--dark {
	color: var(--gold);
}

.sw-section__title {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 600;
	color: var(--charcoal);
	margin: 0;
}

.sw-section__title--light {
	color: var(--warm-white);
}

/* -------------------------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------------------- */
.sw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 12px 26px;
	border-radius: 100px;
	transition: all 0.3s var(--ease);
	cursor: pointer;
	line-height: 1;
}

.sw-btn--pill {
	border-radius: 100px;
}

.sw-btn--outline {
	border: 1px solid var(--gold);
	color: var(--gold);
	background: transparent;
}

.sw-btn--outline:hover {
	background: var(--gold);
	color: var(--charcoal);
}

.sw-btn--gold {
	background: var(--gold);
	color: var(--charcoal);
	border: 1px solid var(--gold);
}

.sw-btn--gold:hover {
	background: var(--gold-bright);
	border-color: var(--gold-bright);
	color: var(--charcoal);
}

.sw-btn--whatsapp-pill {
	background: var(--whatsapp);
	color: #fff;
	border: 1px solid var(--whatsapp);
}

.sw-btn--whatsapp-pill:hover {
	filter: brightness(1.08);
	color: #fff;
}

.sw-btn--lg {
	padding: 16px 38px;
	font-size: 13px;
}

/* -------------------------------------------------------------------------
   5. Header
   ---------------------------------------------------------------------- */
.sw-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9000;
	transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
	background: var(--charcoal);
	border-bottom: 1px solid transparent;
}

.sw-header[data-transparent="true"] {
	background: transparent;
}

.sw-header.is-scrolled {
	background: var(--charcoal);
	border-bottom: 1px solid var(--gold-line);
}

.sw-header__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	transition: padding 0.4s var(--ease);
}

.sw-header.is-scrolled .sw-header__inner {
	padding-block: 18px;
}

.sw-logo {
	display: inline-flex;
	align-items: center;
}

.sw-logo__img {
	height: 50px;
	width: auto;
	display: block;
	transition: transform 0.4s var(--ease);
}

.sw-header.is-scrolled .sw-logo__img {
	transform: scale(0.88);
}

/* Center nav */
.sw-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.sw-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
}

.sw-nav__list a {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(247, 245, 240, 0.7);
	position: relative;
	padding: 6px 0;
	transition: color 0.3s var(--ease);
}

.sw-nav__list a:hover {
	color: var(--gold);
}

/* Active page highlight — current nav item in Champagne Gold on every page. */
.current-menu-item > a,
.current_page_item > a,
.current-menu-parent > a,
.current-page-ancestor > a {
	color: var(--gold) !important;
}

.sw-nav__list .current-menu-item > a,
.sw-nav__list .current_page_item > a {
	color: var(--gold);
}

.sw-nav__list .current-menu-item > a::after,
.sw-nav__list .current_page_item > a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
}

.sw-header__right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.sw-whatsapp-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--whatsapp);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s var(--ease);
}

.sw-whatsapp-btn:hover {
	transform: scale(1.08);
	color: #fff;
}

.sw-whatsapp-btn svg {
	width: 20px;
	height: 20px;
}

/* Hamburger */
.sw-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
}

.sw-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--warm-white);
	transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.sw-hamburger.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.sw-hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.sw-hamburger.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
   6. Mobile drawer
   ---------------------------------------------------------------------- */
.sw-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	z-index: 9400;
	transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.sw-drawer-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.sw-drawer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 60%;
	max-width: 340px;
	background: var(--charcoal);
	border-right: 1px solid var(--gold-line);
	z-index: 9500;
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 90px 28px 40px;
}

.sw-drawer.is-open {
	transform: translateX(0);
}

.sw-drawer__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: center;
}

.sw-drawer__list a {
	display: block;
	font-family: var(--font-head);
	font-size: 26px;
	font-weight: 500;
	color: var(--warm-white);
	padding: 12px 0;
	transition: color 0.3s var(--ease);
}

.sw-drawer__list a:hover,
.sw-drawer__list .current-menu-item > a {
	color: var(--gold);
}

.sw-drawer__actions {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}

.sw-drawer__actions .sw-btn {
	width: 100%;
	max-width: 240px;
}

/* -------------------------------------------------------------------------
   8. Hero — scroll-scrubbed frame sequence
   ---------------------------------------------------------------------- */
.sw-hero-scroll {
	position: relative;
	/* Scroll length ≈ how "fast" the clip scrubs. ~2 screen-heights = the clip
	   plays roughly twice as fast per scroll, so visitors scroll far less. */
	height: 200vh;
	background: var(--charcoal-90);
	color: var(--warm-white);
}

.sw-hero-scroll__pin {
	position: sticky;
	top: 0;
	height: 100vh;
	min-height: 560px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sw-hero-scroll__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: var(--charcoal-90);
}

/* Left-side dark gradient so the frosted-glass box is always legible over the
   video, regardless of frame content. */
.sw-hero-scroll__pin::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
	pointer-events: none;
}

/* Frosted-glass text box, left side, vertically centered. */
.sw-hero-glass {
	position: absolute;
	left: 6%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	/* Explicit width: the fading lines are absolutely positioned, so without a
	   set width the box would collapse and the text would over-wrap. */
	width: 480px;
	max-width: 82vw;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 16px;
	padding: 40px 48px;
}

.sw-hero-glass__lines {
	position: relative;
	/* Tall enough to fully back the tallest line (the 2-line "BROUGHT / TO LIFE."). */
	min-height: 2.8em;
	font-family: var(--font-head);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.sw-hero-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
	font: inherit;
	opacity: 0;
	/* Vertically centred; the +20px is the fade-in offset. */
	transform: translateY(calc(-50% + 20px));
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.sw-hero-line.is-active {
	opacity: 1;
	transform: translateY(-50%);
}

.sw-hero-line__w { color: var(--warm-white); }
.sw-hero-line__g { color: var(--gold); }

.sw-hero-scroll__loader {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: opacity 0.5s var(--ease);
}

.sw-hero-scroll__loader span {
	width: 36px;
	height: 36px;
	border: 2px solid rgba(201, 169, 110, 0.25);
	border-top-color: var(--gold);
	border-radius: 50%;
	animation: sw-spin 0.9s linear infinite;
}

.sw-hero-scroll__loader.is-dim {
	opacity: 0;
}

.sw-hero-scroll__loader.is-hidden {
	display: none;
}

@keyframes sw-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
	.sw-hero-scroll { height: 150vh; }
	.sw-hero-scroll__pin { min-height: 480px; }
	.sw-hero-glass {
		left: 5%;
		right: 5%;
		width: auto;
		max-width: none;
		padding: 30px 28px;
	}
}

/* Legacy static hero (kept for reference / fallback). */
.sw-hero {
	position: relative;
	height: 100vh;
	min-height: 620px;
	background: var(--charcoal-90);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--warm-white);
}

.sw-hero__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 45%, #1a1a1a 0%, #111111 55%, #0d0d0d 100%);
	animation: sw-breathe 9s ease-in-out infinite;
}

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

.sw-hero__placeholder {
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(201, 169, 110, 0.45);
	border: 1px dashed rgba(201, 169, 110, 0.3);
	padding: 8px 16px;
	border-radius: 100px;
	pointer-events: none;
}

.sw-hero__overlay {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 24px;
}

.sw-hero__line {
	font-family: var(--font-head);
	font-size: clamp(2.6rem, 7vw, 6rem);
	font-weight: 600;
	color: var(--warm-white);
	margin: 0;
	letter-spacing: 0.01em;
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.sw-hero__line.is-swapping {
	opacity: 0;
	transform: translateY(16px);
}

.sw-hero__scroll {
	position: absolute;
	bottom: 34px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.sw-hero__chevron {
	width: 16px;
	height: 16px;
	border-right: 2px solid var(--gold);
	border-bottom: 2px solid var(--gold);
	transform: rotate(45deg);
	animation: sw-bounce 1.8s var(--ease) infinite;
}

/* -------------------------------------------------------------------------
   9. Experience bar
   ---------------------------------------------------------------------- */
.sw-experience {
	padding: 60px 0;
	text-align: center;
}

.sw-experience__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 4px;
	width: 100%;
	margin: 0 auto;
}

.sw-experience__num {
	font-family: var(--font-head);
	font-size: clamp(4.5rem, 12vw, 120px);
	font-weight: 700;
	line-height: 1;
	color: var(--gold);
	text-align: center;
	width: 100%;
}

.sw-experience__label {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--warm-white);
	text-align: center;
	width: 100%;
}

/* -------------------------------------------------------------------------
   10. Intro text
   ---------------------------------------------------------------------- */
.sw-intro-text__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.sw-intro-text__title {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--charcoal);
	margin-bottom: 10px;
}

.sw-intro-text__sub {
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 30px;
}

.sw-intro-text__body {
	font-size: 16px;
	line-height: 1.9;
	color: #3a3a3a;
	margin: 0;
}

/* -------------------------------------------------------------------------
   11. Work glimpses grid
   ---------------------------------------------------------------------- */
.sw-glimpses__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.sw-glimpse-card {
	position: relative;
	display: block;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid transparent;
	transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.sw-glimpse-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #1a1a1a;
}

.sw-glimpse-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.sw-glimpse-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 75%);
}

.sw-glimpse-card__body {
	position: absolute;
	left: 20px;
	bottom: 18px;
	right: 20px;
	z-index: 2;
}

.sw-glimpse-card__title {
	font-family: var(--font-head);
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.sw-glimpse-card__more {
	display: block;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
	margin-top: 6px;
}

.sw-glimpse-card:hover {
	border-color: var(--gold-line-strong);
}

.sw-glimpse-card:hover .sw-glimpse-card__media img {
	transform: scale(1.06);
}

.sw-glimpse-card:hover .sw-glimpse-card__more {
	opacity: 1;
	transform: translateY(0);
}

/* -------------------------------------------------------------------------
   12. Services carousel
   ---------------------------------------------------------------------- */
.sw-carousel {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sw-carousel__viewport {
	flex: 1;
	overflow: hidden;
}

.sw-carousel__track {
	display: flex;
	transition: transform 0.6s var(--ease);
}

.sw-carousel__slide {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 12px;
}

.sw-service-card {
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
	padding: 38px 22px;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 16px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.sw-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
}

.sw-service-card__accent {
	width: 34px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}

.sw-service-card__name {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	color: var(--charcoal);
	line-height: 1.4;
}

.sw-carousel__arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--gold-line-strong);
	color: var(--charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s var(--ease);
}

.sw-carousel__arrow:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

.sw-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.sw-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(17, 17, 17, 0.2);
	cursor: pointer;
	transition: background 0.3s var(--ease), width 0.3s var(--ease);
}

.sw-carousel__dot.is-active {
	background: var(--gold);
	width: 22px;
	border-radius: 100px;
}

/* -------------------------------------------------------------------------
   13. Clients marquee
   ---------------------------------------------------------------------- */
.sw-clients-strip {
	overflow: hidden;
}

.sw-marquee {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 20px;
}

.sw-marquee__row {
	display: flex;
	width: max-content;
}

.sw-marquee__row--left {
	animation: sw-marquee-left 40s linear infinite;
}

.sw-marquee__row--right {
	animation: sw-marquee-right 40s linear infinite;
}

.sw-marquee__group {
	display: flex;
	gap: 22px;
	padding-right: 22px;
}

.sw-logo-box {
	flex: 0 0 auto;
	width: 170px;
	height: 100px;
	background: var(--warm-white);
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.3s var(--ease);
}

.sw-logo-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	/* Full colour at all times. */
	filter: none;
	opacity: 1;
	transition: transform 0.3s var(--ease);
}

/* Hover: gentle scale-up instead of a colour change. */
.sw-logo-box:hover img {
	transform: scale(1.1);
}

/* -------------------------------------------------------------------------
   14. Testimonials
   ---------------------------------------------------------------------- */
.sw-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.sw-testimonial {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
	padding: 40px 32px 34px;
	margin: 0;
	position: relative;
}

.sw-testimonial__mark {
	font-family: var(--font-head);
	font-size: 74px;
	line-height: 0.6;
	color: var(--gold);
	display: block;
	height: 34px;
}

.sw-testimonial__quote {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	margin: 0 0 24px;
}

.sw-testimonial__caption {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sw-testimonial__name {
	font-weight: 600;
	color: var(--charcoal);
}

.sw-testimonial__role {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #9a9284;
}

/* -------------------------------------------------------------------------
   15. Why Sea Winds
   ---------------------------------------------------------------------- */
.sw-why__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 940px;
	margin: 0 auto;
}

.sw-why__item {
	border: 1px solid var(--gold-line-soft);
	border-radius: var(--radius-md);
	padding: 40px 34px;
	background: var(--white-soft);
	transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.sw-why__item:hover {
	border-color: var(--gold-line-strong);
	transform: translateY(-4px);
}

.sw-why__num {
	font-family: var(--font-head);
	font-size: 34px;
	font-weight: 700;
	color: var(--gold);
	display: block;
	margin-bottom: 14px;
}

.sw-why__title {
	font-size: 24px;
	color: var(--warm-white);
	margin-bottom: 8px;
}

.sw-why__desc {
	font-size: 15px;
	color: rgba(247, 245, 240, 0.65);
	margin: 0;
}

/* Light variant (e.g. About page "Why Choose Us"). */
.sw-why--light .sw-why__item {
	background: #fff;
	border-color: var(--gold-line-soft);
	box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
}

.sw-why--light .sw-why__item:hover {
	border-color: var(--gold-line-strong);
}

.sw-why--light .sw-why__title {
	color: var(--charcoal);
}

.sw-why--light .sw-why__desc {
	color: #55504a;
}

/* -------------------------------------------------------------------------
   16. Footer
   ---------------------------------------------------------------------- */
.sw-footer {
	background: var(--charcoal-90);
	border-top: 1px solid var(--gold-line-soft);
	color: var(--warm-white);
	padding-top: 70px;
}

.sw-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1.2fr 1.2fr;
	gap: 46px;
	padding-bottom: 50px;
}

.sw-footer__logo img {
	height: 44px;
	width: auto;
	margin-bottom: 18px;
}

.sw-footer__tagline {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(216, 208, 196, 0.7);
	max-width: 280px;
	margin-bottom: 22px;
}

.sw-social {
	display: flex;
	gap: 12px;
}

.sw-social__link {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(201, 169, 110, 0.3);
	color: var(--taupe);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s var(--ease);
}

.sw-social__link:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--charcoal);
}

.sw-footer__nav {
	display: flex;
	gap: 40px;
}

.sw-footer__nav-col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sw-footer__nav-col a {
	font-size: 13px;
	color: var(--taupe);
	transition: color 0.3s var(--ease);
}

.sw-footer__nav-col a:hover {
	color: var(--gold);
}

.sw-footer__heading {
	font-family: var(--font-head);
	font-size: 20px;
	color: var(--warm-white);
	margin-bottom: 20px;
}

.sw-footer__contact-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}

.sw-footer__contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: var(--taupe);
	line-height: 1.5;
}

.sw-footer__contact-list a {
	color: var(--taupe);
}

.sw-footer__contact-list a:hover {
	color: var(--gold);
}

.sw-footer__ic {
	color: var(--gold);
	display: inline-flex;
	margin-top: 2px;
	flex-shrink: 0;
}

.sw-footer__wa {
	gap: 8px;
}

.sw-footer__wa svg {
	width: 18px;
	height: 18px;
}

.sw-footer__bottom {
	border-top: 1px solid var(--gold-line-soft);
	padding: 22px 24px;
	text-align: center;
}

.sw-footer__bottom p {
	margin: 0;
	font-size: 12px;
	color: rgba(216, 208, 196, 0.5);
	letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
   17. Floating WhatsApp
   ---------------------------------------------------------------------- */
.sw-float-wa {
	position: fixed;
	bottom: 26px;
	right: 26px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--whatsapp);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	transition: transform 0.3s var(--ease);
	animation: sw-pulse 2.4s ease-out infinite;
}

.sw-float-wa:hover {
	transform: scale(1.1);
	color: #fff;
}

.sw-float-wa svg {
	width: 30px;
	height: 30px;
}

/* -------------------------------------------------------------------------
   18. Page hero banner (interior pages)
   ---------------------------------------------------------------------- */
.sw-page-hero {
	position: relative;
	background: var(--charcoal-90);
	color: var(--warm-white);
	text-align: center;
	/* Compact banner. The top must clear the fixed header (~100px) so the title
	   isn't hidden behind it; the VISIBLE band is ~24px above and ~56px below
	   the title. Change the +24px / bottom value to taste. */
	padding: calc(var(--header-h) + 24px) 24px 56px;
	overflow: hidden;
}

/* Trim the title/underline spacing so the banner reads tight and premium. */
.sw-page-hero__title {
	margin-bottom: 14px;
}

.sw-page-hero__underline {
	margin-bottom: 0;
}

.sw-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 40%, #1c1c1c 0%, #111 60%, #0d0d0d 100%);
	z-index: 0;
}

.sw-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.sw-page-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}

.sw-page-hero__title {
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	color: var(--warm-white);
	margin: 0 0 18px;
}

.sw-page-hero__underline {
	width: 64px;
	height: 2px;
	background: var(--gold);
	margin: 0 auto 22px;
}

.sw-page-hero__sub {
	font-size: 16px;
	color: rgba(247, 245, 240, 0.7);
	max-width: 600px;
	margin: 16px auto 0;
}

/* -------------------------------------------------------------------------
   19. Generic content / page.php
   ---------------------------------------------------------------------- */
.sw-page-content {
	background: var(--warm-white);
	color: var(--charcoal);
	padding: 90px 0;
}

.sw-page-content__inner {
	max-width: 820px;
	margin: 0 auto;
}

.sw-page-content__inner h2,
.sw-page-content__inner h3 {
	color: var(--charcoal);
}

.sw-page-content__inner a {
	color: var(--gold);
	text-decoration: underline;
}

.sw-page-content__inner img {
	border-radius: var(--radius-md);
	margin: 24px 0;
}

/* -------------------------------------------------------------------------
   20. About page
   ---------------------------------------------------------------------- */
.sw-about-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.sw-about-block__title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 20px;
}

.sw-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.sw-feature {
	border: 1px solid var(--gold-line-soft);
	border-radius: var(--radius-md);
	padding: 40px 32px;
	background: var(--white-soft);
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.sw-feature:hover {
	border-color: var(--gold-line-strong);
	transform: translateY(-4px);
}

.sw-feature__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--gold-line-strong);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.sw-feature__title {
	font-size: 22px;
	color: var(--warm-white);
	margin-bottom: 8px;
}

.sw-feature__desc {
	font-size: 14px;
	color: rgba(247, 245, 240, 0.65);
	margin: 0;
}

.sw-section--dark .sw-feature__title {
	color: var(--warm-white);
}

.sw-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}

.sw-stat__num {
	font-family: var(--font-head);
	font-size: clamp(2.6rem, 5vw, 3.6rem);
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	display: block;
	margin-bottom: 8px;
}

.sw-stat__label {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(247, 245, 240, 0.7);
}

/* -------------------------------------------------------------------------
   21. Services page (pill tags)
   ---------------------------------------------------------------------- */
.sw-service-cat {
	max-width: 980px;
	margin: 0 auto;
}

.sw-service-cat__head {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 34px;
}

.sw-service-cat__num {
	font-family: var(--font-head);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}

.sw-service-cat__title {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	margin: 0;
}

.sw-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sw-pill {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	padding: 9px 20px;
	border-radius: 100px;
	border: 1px solid var(--gold-line-strong);
	transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
	cursor: default;
}

.sw-section--dark .sw-pill {
	color: var(--warm-white);
}

.sw-section--light .sw-pill {
	color: var(--charcoal);
}

.sw-pill:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--charcoal);
}

.sw-section--dark .sw-service-cat__title {
	color: var(--warm-white);
}

.sw-section--light .sw-service-cat__title {
	color: var(--charcoal);
}

/* CTA band */
.sw-cta {
	background: var(--charcoal);
	color: var(--warm-white);
	text-align: center;
	padding: 90px 0;
}

.sw-cta__title {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--warm-white);
	margin-bottom: 26px;
}

/* -------------------------------------------------------------------------
   22. Portfolio grid + filter
   ---------------------------------------------------------------------- */
.sw-portfolio {
	background: var(--charcoal);
	color: var(--warm-white);
	padding: 70px 0 110px;
}

/* When a compact hero precedes the grid, the sticky filter provides the top
   spacing, so drop the section's own top padding. */
.sw-portfolio--has-hero {
	padding-top: 0;
}

.sw-filter {
	position: sticky;
	top: var(--header-h);
	z-index: 800;
	background: rgba(17, 17, 17, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 18px 0;
	margin-bottom: 46px;
	border-bottom: 1px solid var(--gold-line-soft);
}

.sw-filter__btn {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(247, 245, 240, 0.65);
	padding: 8px 18px;
	position: relative;
	transition: color 0.3s var(--ease);
}

.sw-filter__btn::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform 0.3s var(--ease);
}

.sw-filter__btn:hover {
	color: var(--gold);
}

.sw-filter__btn.is-active {
	color: var(--gold);
}

.sw-filter__btn.is-active::after {
	transform: scaleX(1);
}

/* Light filter bar (Portfolio page): white background, dark tab text, and a
   gold underline under the text only for the active tab — no filled buttons. */
.sw-filter--light {
	background: var(--warm-white);
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.sw-filter--light .sw-filter__btn {
	color: #111111;
}

.sw-filter--light .sw-filter__btn::after {
	background: var(--gold);
}

.sw-filter--light .sw-filter__btn:hover {
	color: #111111;
}

.sw-filter--light .sw-filter__btn:hover::after {
	transform: scaleX(1);
	opacity: 0.4;
}

.sw-filter--light .sw-filter__btn.is-active {
	color: #111111;
}

.sw-filter--light .sw-filter__btn.is-active::after {
	transform: scaleX(1);
	opacity: 1;
}

/* -------------------------------------------------------------------------
   Portfolio grid — clean blog-card style (white cards, image on top, title
   below, category label in gold, no date / read-more).
   ---------------------------------------------------------------------- */
.sw-pf {
	padding: 50px 0 100px;
}

.sw-pf__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.sw-pf-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid transparent;
	box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
	text-align: left;
	width: 100%;
	padding: 0;
	font: inherit;
	color: inherit;
}

/* Project boxes that open the photo lightbox (rendered as buttons/divs). */
.sw-project-open {
	cursor: pointer;
}

.sw-pf-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold-line-strong);
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
}

.sw-pf-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #ececec;
}

.sw-pf-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.sw-pf-card:hover .sw-pf-card__media img {
	transform: scale(1.05);
}

.sw-pf-card__body {
	padding: 18px 20px 22px;
}

.sw-pf-card__cat {
	display: block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
}

.sw-pf-card__title {
	font-family: var(--font-head);
	font-size: 22px;
	line-height: 1.2;
	color: var(--charcoal);
	margin: 0;
}

.sw-pf-card.is-hidden {
	display: none;
}

.sw-portfolio__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.sw-project-card {
	position: relative;
	display: block;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid transparent;
	transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sw-project-card__media {
	position: relative;
	aspect-ratio: 3 / 2.4;
	overflow: hidden;
	background: #1a1a1a;
}

.sw-project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.sw-project-card__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 78%);
}

.sw-project-card__cat {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 3;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--warm-white);
	background: rgba(17, 17, 17, 0.6);
	border: 1px solid var(--gold-line);
	padding: 6px 12px;
	border-radius: 100px;
}

.sw-project-card__body {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 20px;
	z-index: 3;
}

.sw-project-card__title {
	font-family: var(--font-head);
	font-size: 24px;
	color: #fff;
	margin: 0;
}

.sw-project-card__more {
	display: block;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	margin-top: 6px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.sw-project-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold-line-strong);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 169, 110, 0.2);
}

.sw-project-card:hover .sw-project-card__media img {
	transform: scale(1.08);
}

.sw-project-card:hover .sw-project-card__more {
	opacity: 1;
	transform: translateY(0);
}

.sw-project-card.is-hidden {
	display: none;
}

/* -------------------------------------------------------------------------
   23. Clients page grid
   ---------------------------------------------------------------------- */
.sw-clients-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* Minimal square logo tiles: white, clean gold border, rounded corners, no hover. */
.sw-client-box {
	aspect-ratio: 1 / 1;
	background: #fff;
	border: 1px solid var(--gold);
	border-radius: 20px;
	padding: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sw-client-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: none;
	opacity: 1;
}

/* -------------------------------------------------------------------------
   24. Contact page
   ---------------------------------------------------------------------- */
.sw-contact {
	background: var(--charcoal);
	color: var(--warm-white);
	padding: 90px 0;
}

.sw-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: start;
}

.sw-contact-info__title {
	font-size: 26px;
	color: var(--warm-white);
	margin-bottom: 24px;
}

.sw-contact-info__list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-bottom: 30px;
}

.sw-contact-info__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.sw-contact-info__ic {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--gold-line-strong);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sw-contact-info__label {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(247, 245, 240, 0.5);
	display: block;
	margin-bottom: 4px;
}

.sw-contact-info__value {
	font-size: 15px;
	color: var(--warm-white);
}

.sw-contact-info__value a {
	color: var(--warm-white);
}

.sw-contact-info__value a:hover {
	color: var(--gold);
}

.sw-contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.sw-contact-info__social {
	display: flex;
	gap: 12px;
	margin-top: 28px;
}

/* Form */
.sw-form {
	background: var(--white-soft);
	border: 1px solid var(--gold-line-soft);
	border-radius: var(--radius-lg);
	padding: 40px;
}

.sw-form__row {
	margin-bottom: 20px;
}

.sw-form__label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--warm-white);
	margin-bottom: 8px;
}

.sw-form__label .req {
	color: var(--gold);
}

.sw-form input,
.sw-form textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(201, 169, 110, 0.3);
	border-radius: 12px;
	padding: 16px;
	color: var(--warm-white);
	font-family: var(--font-body);
	font-size: 15px;
	transition: border-color 0.3s var(--ease);
}

.sw-form input::placeholder,
.sw-form textarea::placeholder {
	color: rgba(247, 245, 240, 0.4);
}

.sw-form input:focus,
.sw-form textarea:focus {
	border-color: var(--gold);
	outline: none;
}

.sw-form input.has-error,
.sw-form textarea.has-error {
	border-color: #e2696b;
}

.sw-form__error {
	display: none;
	font-size: 12px;
	color: #e2696b;
	margin-top: 6px;
}

.sw-form__error.is-shown {
	display: block;
}

.sw-form__submit {
	width: 100%;
	background: var(--gold);
	color: var(--charcoal);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 16px 40px;
	border-radius: 100px;
	transition: filter 0.3s var(--ease), background 0.3s var(--ease);
}

.sw-form__submit:hover {
	filter: brightness(1.1);
	background: var(--gold);
}

.sw-form__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.sw-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sw-form__feedback {
	margin-top: 18px;
	font-size: 15px;
	text-align: center;
	min-height: 22px;
}

.sw-form__feedback.is-success {
	color: var(--gold);
}

.sw-form__feedback.is-error {
	color: #e2696b;
}

/* -------------------------------------------------------------------------
   25. Blog
   ---------------------------------------------------------------------- */
.sw-blog {
	background: var(--warm-white);
	color: var(--charcoal);
	padding: 90px 0;
}

.sw-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.sw-post-card {
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid transparent;
	box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
	display: flex;
	flex-direction: column;
}

.sw-post-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold-line-strong);
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
}

.sw-post-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eee;
}

.sw-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.sw-post-card:hover .sw-post-card__media img {
	transform: scale(1.05);
}

.sw-post-card__body {
	padding: 26px 26px 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.sw-post-card__cat {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}

.sw-post-card__title {
	font-size: 24px;
	color: var(--charcoal);
	margin-bottom: 10px;
	line-height: 1.25;
}

.sw-post-card__title a {
	color: var(--charcoal);
}

.sw-post-card__title a:hover {
	color: var(--gold);
}

.sw-post-card__excerpt {
	font-size: 14px;
	color: #55504a;
	margin-bottom: 18px;
	flex: 1;
}

.sw-post-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sw-post-card__more {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
}

.sw-post-card__date {
	font-size: 12px;
	color: #9a9284;
}

/* Pagination */
.sw-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.sw-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 100px;
	border: 1px solid var(--gold-line-strong);
	color: var(--charcoal);
	font-size: 13px;
	transition: all 0.3s var(--ease);
}

.sw-pagination .page-numbers.current,
.sw-pagination .page-numbers:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--charcoal);
}

/* -------------------------------------------------------------------------
   26. Single post
   ---------------------------------------------------------------------- */
.sw-single {
	background: #fff;
	color: var(--charcoal);
}

.sw-single__content {
	max-width: 780px;
	margin: 0 auto;
	padding: 60px 24px 90px;
}

.sw-single__featured {
	max-width: 1100px;
	margin: -60px auto 0;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.sw-single__featured img {
	width: 100%;
	border-radius: var(--radius-md);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.sw-single__content h2,
.sw-single__content h3,
.sw-single__content h4 {
	font-family: var(--font-head);
	color: var(--charcoal);
	margin-top: 1.6em;
}

.sw-single__content p,
.sw-single__content li {
	font-size: 17px;
	line-height: 1.8;
	color: #2f2f2f;
}

.sw-single__content a {
	color: var(--gold);
	text-decoration: underline;
}

.sw-single__content img {
	border-radius: var(--radius-md);
	margin: 28px 0;
}

.sw-single__content blockquote {
	border-left: 3px solid var(--gold);
	margin: 28px 0;
	padding: 6px 0 6px 24px;
	font-style: italic;
	color: #4a4a4a;
}

.sw-single__meta {
	color: rgba(247, 245, 240, 0.7);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 14px;
}

.sw-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 50px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

/* -------------------------------------------------------------------------
   27. Single project (photo grid)
   ---------------------------------------------------------------------- */
.sw-project {
	background: var(--charcoal);
	color: var(--warm-white);
	padding: 70px 0 110px;
}

.sw-project__desc {
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center;
	color: rgba(247, 245, 240, 0.75);
	font-size: 16px;
}

.sw-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.sw-photo {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: #1a1a1a;
	cursor: pointer;
	border: 1px solid transparent;
	transition: border-color 0.3s var(--ease);
}

.sw-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.sw-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(13, 13, 13, 0);
	transition: background 0.3s var(--ease);
}

.sw-photo:hover {
	border-color: var(--gold-line-strong);
}

.sw-photo:hover img {
	transform: scale(1.05);
}

.sw-photo:hover::after {
	background: rgba(13, 13, 13, 0.2);
}

/* -------------------------------------------------------------------------
   28. 404
   ---------------------------------------------------------------------- */
.sw-404 {
	min-height: 100vh;
	background: var(--charcoal);
	color: var(--warm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding: 120px 24px;
}

.sw-404::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 45%, #1c1c1c 0%, #111 60%, #0d0d0d 100%);
	animation: sw-breathe 9s ease-in-out infinite;
}

.sw-404__inner {
	position: relative;
	z-index: 1;
}

.sw-404__code {
	font-family: var(--font-head);
	font-size: clamp(6rem, 20vw, 12rem);
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	margin: 0;
}

.sw-404__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	color: var(--warm-white);
	margin: 10px 0 14px;
}

.sw-404__text {
	color: rgba(247, 245, 240, 0.7);
	margin-bottom: 30px;
}

/* -------------------------------------------------------------------------
   29. Empty states / misc
   ---------------------------------------------------------------------- */
.sw-empty {
	text-align: center;
	padding: 60px 0;
	color: rgba(247, 245, 240, 0.6);
}

.sw-section--light .sw-empty {
	color: #6a6459;
}

.sw-center-cta {
	text-align: center;
	margin-top: 60px;
}

/* -------------------------------------------------------------------------
   30. Keyframes
   ---------------------------------------------------------------------- */
@keyframes sw-breathe {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.75; }
}

@keyframes sw-bounce {
	0%, 100% { transform: rotate(45deg) translate(0, 0); }
	50% { transform: rotate(45deg) translate(4px, 4px); }
}

@keyframes sw-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes sw-marquee-left {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes sw-marquee-right {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

/* -------------------------------------------------------------------------
   31. Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.sw-glimpses__grid { grid-template-columns: repeat(2, 1fr); }
	.sw-carousel__slide { flex-basis: 50%; max-width: 50%; }
	.sw-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
	.sw-pf__grid { grid-template-columns: repeat(2, 1fr); }
	.sw-clients-grid { grid-template-columns: repeat(3, 1fr); }
	.sw-photo-grid { grid-template-columns: repeat(2, 1fr); }
	.sw-footer__inner { grid-template-columns: 1fr 1fr; }
	.sw-footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.sw-nav { display: none; }
	.sw-get-in-touch { display: none; }
	.sw-hamburger { display: flex; }
	.sw-section { padding: 70px 0; }
	.sw-testimonials__grid { grid-template-columns: 1fr; }
	.sw-why__grid { grid-template-columns: 1fr; }
	.sw-feature-grid { grid-template-columns: 1fr; }
	.sw-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
	.sw-about-two { grid-template-columns: 1fr; gap: 30px; }
	.sw-blog__grid { grid-template-columns: 1fr; }
	.sw-contact__grid { grid-template-columns: 1fr; gap: 40px; }
	.sw-carousel__slide { flex-basis: 100%; max-width: 100%; }
	.sw-clients-grid { grid-template-columns: repeat(2, 1fr); }
	.sw-service-cat__head { flex-direction: column; gap: 6px; }
}

@media (max-width: 560px) {
	.sw-glimpses__grid { grid-template-columns: 1fr; }
	.sw-portfolio__grid { grid-template-columns: 1fr; }
	.sw-pf__grid { grid-template-columns: 1fr; }
	.sw-photo-grid { grid-template-columns: 1fr; }
	.sw-footer__inner { grid-template-columns: 1fr; gap: 34px; }
	.sw-footer__nav { justify-content: flex-start; }
	.sw-form { padding: 26px; }
	.sw-container { padding-inline: 18px; }
}
