:root {
	--tria-accent: #d6212c;
	--tria-accent-dark: #b6111f;
	--tria-dark: #111111;
	--tria-dark-soft: #1c1c1f;
	--tria-surface: #f5f5f6;
	--tria-white: #ffffff;
	--tria-copy: #5d6069;
	--tria-title: #111111;
	--tria-line: #ececef;
	--tria-whatsapp: #20b15a;
	--tria-whatsapp-dark: #148548;
	--tria-shadow-soft: 0 20px 45px rgba(18, 20, 25, 0.08);
	--tria-shadow-strong: 0 24px 60px rgba(15, 16, 18, 0.16);
	--tria-max-width: 1340px;
	--tria-wide-width: 1500px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background: var(--tria-white);
	color: var(--tria-copy);
	line-height: 1.7;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1rem;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

svg {
	display: block;
	width: 100%;
	height: 100%;
}

.site-main {
	overflow: clip;
}

.container {
	width: min(calc(100% - 2rem), var(--tria-max-width));
	margin: 0 auto;
}

.section {
	padding: 5rem 0;
}

h1,
h2 {
	margin: 0 0 1rem;
	font-family: "Barlow Condensed", sans-serif;
	color: var(--tria-title);
	line-height: 0.95;
	text-transform: uppercase;
}

h3,
h4 {
	margin: 0 0 0.75rem;
	color: var(--tria-title);
	line-height: 1.25;
}

h1 {
	font-size: clamp(3.2rem, 6vw, 5.3rem);
}

h2 {
	font-size: clamp(2.35rem, 4.5vw, 3.9rem);
}

.topbar {
	background: var(--tria-white);
	border-bottom: 1px solid var(--tria-line);
}

.topbar__inner,
.topbar__address,
.topbar__right,
.nav-wrap__inner,
.hero-actions,
.footer__bottom-inner {
	display: flex;
	align-items: center;
}

.topbar__inner {
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 0;
	font-size: 0.92rem;
	color: #34363c;
}

.topbar__address,
.topbar__right {
	gap: 0.85rem;
}

.topbar__address p,
.topbar__phone span {
	margin: 0;
}

.icon-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: var(--tria-accent);
}

.icon-badge--small {
	width: 1rem;
	height: 1rem;
}

.social-links {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.85rem;
	height: 1.85rem;
	padding: 0.42rem;
	border-radius: 50%;
	color: #111111;
	background: #f6f6f7;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.social-link:hover {
	background: var(--tria-accent);
	color: var(--tria-white);
	transform: translateY(-1px);
}

.social-link--placeholder {
	cursor: default;
	opacity: 0.42;
}

.topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 700;
}

.nav-wrap {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 30px rgba(16, 18, 22, 0);
	backdrop-filter: blur(14px);
	transition: box-shadow 0.25s ease;
}

.nav-wrap.is-scrolled {
	box-shadow: 0 10px 30px rgba(16, 18, 22, 0.08);
}

.nav-wrap__inner {
	gap: 2rem;
	padding: 1rem 0;
}

.site-branding {
	flex: 0 0 auto;
}

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

.site-logo {
	width: auto;
	max-height: 3.6rem;
}

.main-navigation {
	margin-left: auto;
}

.nav-menu,
.footer-menu,
.footer-list,
.about-list,
.contact-pills,
.hero-contact-card__list {
	list-style: none;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2.2rem;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	display: inline-flex;
	padding: 0.4rem 0;
	font-size: 0.96rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #18191d;
}

.nav-menu .current-menu-item > a::after,
.nav-menu a:hover::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1rem;
	height: 3px;
	background: var(--tria-accent);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 0.34rem;
	width: 3rem;
	height: 3rem;
	border: 0;
	border-radius: 999px;
	background: #f4f4f6;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 1.2rem;
	height: 2px;
	margin: 0 auto;
	background: #111111;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(0.42rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-0.42rem) rotate(-45deg);
}

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

.header-contact,
.button,
.footer__phone,
.contact-pill,
.service-card,
.gallery-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.header-contact {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 0.85rem 1.25rem;
	border: 1px solid rgba(214, 33, 44, 0.32);
	background: var(--tria-white);
	box-shadow: 0 12px 28px rgba(214, 33, 44, 0.07);
}

.header-contact:hover,
.footer__phone:hover,
.contact-pill:hover,
.button:hover,
.service-card:hover,
.gallery-card:hover {
	transform: translateY(-2px);
}

.header-contact__icon,
.footer__phone-icon,
.contact-pill__icon,
.highlight-card__icon,
.service-card__icon,
.cta-card__icon,
.process-card__icon,
.contact-form-placeholder__icon,
.hero-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: var(--tria-accent);
}

.header-contact__icon {
	width: 1.6rem;
	height: 1.6rem;
}

.header-contact__content {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.2;
}

.header-contact__content strong {
	font-size: 1.05rem;
	color: #111111;
}

.header-contact__content small {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #686b74;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.55rem;
	border: 1px solid transparent;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.button--primary {
	background: linear-gradient(135deg, var(--tria-accent), var(--tria-accent-dark));
	color: var(--tria-white);
	box-shadow: 0 18px 36px rgba(214, 33, 44, 0.18);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.36);
	background: rgba(17, 17, 17, 0.35);
	color: var(--tria-white);
}

.button--outline-dark {
	border-color: rgba(17, 17, 17, 0.14);
	background: transparent;
	color: var(--tria-title);
}

.button--full {
	width: 100%;
}

.hero-section {
	padding: 0 0 4.5rem;
}

.hero-banner {
	position: relative;
	min-height: 43rem;
	background-color: #17171a;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(12, 12, 12, 0.93) 0%, rgba(12, 12, 12, 0.74) 36%, rgba(12, 12, 12, 0.18) 62%, rgba(12, 12, 12, 0.1) 100%),
		linear-gradient(180deg, rgba(12, 12, 12, 0.16) 0%, rgba(12, 12, 12, 0.06) 100%);
}

.hero-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 2rem;
	min-height: 43rem;
}

.hero-panel {
	display: grid;
	align-content: center;
	width: min(100%, 34rem);
	padding: 4.8rem 2rem 7.8rem 0;
	color: var(--tria-white);
}

.hero-eyebrow,
.section-label,
.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.2rem;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-eyebrow {
	color: #ff616c;
}

.hero-eyebrow::before,
.section-label::before,
.section-kicker::before {
	content: "";
	width: 2.2rem;
	height: 2px;
	background: currentColor;
}

.hero-panel h1 {
	color: var(--tria-white);
}

.hero-panel p {
	max-width: 28rem;
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.hero-contact-card {
	align-self: flex-end;
	display: grid;
	gap: 1rem;
	width: min(100%, 18rem);
	margin: 0 0 7.8rem;
	padding: 1.4rem 1.35rem;
	background: rgba(10, 10, 10, 0.74);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--tria-shadow-strong);
	color: rgba(255, 255, 255, 0.84);
}

.hero-contact-card__label {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff949c;
}

.hero-contact-card strong {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 2rem;
	line-height: 1;
	color: var(--tria-white);
}

.hero-contact-card p {
	margin: 0;
}

.hero-contact-card__list {
	display: grid;
	gap: 0.7rem;
}

.hero-contact-card__list li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.hero-contact-card__icon {
	width: 1.15rem;
	height: 1.15rem;
}

.hero-highlights {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: -4.7rem;
	background: #1a1a1b;
	box-shadow: var(--tria-shadow-strong);
}

.highlight-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.6rem 1.4rem;
	border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.highlight-card:last-child {
	border-right: 0;
}

.highlight-card__icon {
	width: 3rem;
	height: 3rem;
}

.highlight-card h3 {
	margin-bottom: 0.35rem;
	font-size: 1rem;
	color: var(--tria-white);
}

.highlight-card p {
	margin: 0;
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.72);
}

.services-section {
	padding-top: 3.2rem;
}

.services-shell {
	width: min(calc(100% - 1rem), var(--tria-wide-width));
	margin: 0 auto;
}

.services-layout {
	display: grid;
	grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.section-intro {
	max-width: 20rem;
	padding-top: 1rem;
}

.section-intro__actions {
	margin-top: 1.6rem;
}

.section-label {
	color: var(--tria-accent);
}

.section-kicker {
	color: var(--tria-accent);
}

.section-label--light {
	color: #ffd7db;
}

.section-intro p,
.process-intro p,
.about-copy p,
.gallery-heading p,
.contact-panel > p,
.contact-form-placeholder p {
	color: var(--tria-copy);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
}

.service-card,
.contact-panel,
.contact-form-card,
.content-card,
.post-card,
.empty-state,
.error-card {
	background: var(--tria-white);
	border: 1px solid var(--tria-line);
	box-shadow: var(--tria-shadow-soft);
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.6rem 1.2rem;
}

.service-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--tria-accent), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover::after {
	opacity: 1;
}

.service-card__icon {
	width: 3.35rem;
	height: 3.35rem;
	margin-bottom: 1.1rem;
}

.service-card h3 {
	font-size: 1rem;
}

.service-card p {
	margin: 0;
	font-size: 0.94rem;
	color: #686b74;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: auto;
	padding-top: 1.15rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tria-accent);
}

.service-card__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.95rem;
	height: 0.95rem;
}

.process-section {
	padding: 0;
}

.process-shell {
	width: 100%;
	padding: 5rem 0;
	background:
		linear-gradient(145deg, #111111 0%, #1e1e22 100%);
}

.process-layout {
	display: grid;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.process-intro h2,
.process-card h3 {
	color: var(--tria-white);
}

.process-intro p,
.process-card p {
	color: rgba(255, 255, 255, 0.74);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.process-card {
	padding: 1.6rem 1.35rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.process-card__icon {
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
}

.about-section {
	padding-top: 1.2rem;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(340px, 1.12fr) minmax(280px, 0.95fr) minmax(250px, 0.76fr);
	gap: 2rem;
	align-items: start;
}

.about-media {
	position: relative;
	min-height: 32rem;
	background-color: #d8dade;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	box-shadow: var(--tria-shadow-soft);
}

.about-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.12) 100%);
}

.experience-badge {
	position: absolute;
	right: 2rem;
	top: 2rem;
	z-index: 1;
	display: grid;
	gap: 0.3rem;
	width: 10rem;
	padding: 1.5rem 1.2rem;
	background: linear-gradient(180deg, rgba(214, 33, 44, 0.98), rgba(182, 17, 31, 0.98));
	color: var(--tria-white);
	box-shadow: 0 22px 40px rgba(214, 33, 44, 0.22);
}

.experience-badge::before {
	content: "";
	position: absolute;
	inset: 0.9rem -0.9rem -0.9rem 0.9rem;
	z-index: -1;
	background: rgba(14, 14, 15, 0.88);
}

.experience-badge strong {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 3.5rem;
	line-height: 0.9;
}

.experience-badge span {
	font-weight: 700;
}

.about-copy {
	padding-top: 0.4rem;
}

.about-list {
	display: grid;
	gap: 0.85rem;
	margin-top: 1.6rem;
}

.about-list li {
	position: relative;
	padding-left: 1.5rem;
	color: #444851;
}

.about-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--tria-accent);
	box-shadow: 0 0 0 5px rgba(214, 33, 44, 0.12);
}

.cta-card {
	display: grid;
	align-content: start;
	gap: 1.2rem;
	min-height: 100%;
	padding: 2rem;
	background: #111111;
	color: rgba(255, 255, 255, 0.86);
	box-shadow: var(--tria-shadow-strong);
}

.cta-card__phone {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cta-card__icon {
	width: 4.4rem;
	height: 4.4rem;
	padding: 1rem;
	border-radius: 50%;
	background: rgba(214, 33, 44, 0.16);
}

.cta-card__eyebrow {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.68);
}

.cta-card strong {
	display: block;
	font-size: 2rem;
	font-family: "Barlow Condensed", sans-serif;
	color: var(--tria-white);
	line-height: 1;
}

.cta-card__title,
.cta-card__text {
	margin: 0;
}

.cta-card__title {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.94);
}

.cta-card__text {
	color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
	padding-top: 1.6rem;
}

.gallery-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.6rem;
}

.gallery-heading p {
	max-width: 33rem;
}

.gallery-shell {
	width: min(calc(100% - 2rem), var(--tria-wide-width));
	margin: 0 auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.85fr 0.9fr;
	grid-auto-rows: 16rem;
	gap: 1rem;
}

.gallery-card {
	position: relative;
	overflow: hidden;
	min-height: 16rem;
	background: #1a1a1d;
	box-shadow: var(--tria-shadow-soft);
}

.gallery-card__media {
	position: absolute;
	inset: 0;
}

.gallery-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card__image {
	transform: scale(1.04);
}

.gallery-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.78) 100%);
}

.gallery-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.4rem;
	color: var(--tria-white);
}

.gallery-card__index {
	display: inline-flex;
	margin-bottom: 0.65rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff8d96;
}

.gallery-card__overlay h3 {
	color: var(--tria-white);
	font-size: 1.12rem;
}

.gallery-card__overlay p {
	margin: 0;
	font-size: 0.94rem;
	color: rgba(255, 255, 255, 0.82);
}

.gallery-card--tall {
	grid-row: span 2;
}

.gallery-card--wide {
	grid-column: span 2;
}

.contact-section {
	background: #fafafa;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(290px, 0.86fr) minmax(320px, 1.14fr);
	gap: 2rem;
}

.contact-panel,
.contact-form-card {
	padding: 2rem;
}

.contact-pills {
	display: grid;
	gap: 1rem;
	margin-top: 1.8rem;
}

.contact-pill {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.1rem;
	border: 1px solid var(--tria-line);
	background: #ffffff;
}

.contact-pill__icon {
	width: 2.2rem;
	height: 2.2rem;
}

.contact-pill strong {
	display: block;
	margin-bottom: 0.1rem;
	font-size: 1rem;
	color: #111111;
}

.contact-pill span {
	display: block;
	font-size: 0.96rem;
	color: #666972;
}

.contact-form-placeholder {
	display: grid;
	gap: 1rem;
	min-height: 100%;
	align-content: center;
}

.contact-form-placeholder__icon {
	width: 3rem;
	height: 3rem;
}

.contact-form-placeholder h3 {
	margin-bottom: 0;
}

.site-footer {
	background: #101011;
	color: rgba(255, 255, 255, 0.72);
}

.footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
	gap: 2rem;
	padding: 4rem 0 2.4rem;
}

.site-logo--footer {
	max-height: 3.3rem;
	margin-bottom: 1rem;
}

.footer__brand p {
	max-width: 22rem;
}

.footer__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-top: 1.1rem;
	font-weight: 700;
	color: var(--tria-white);
}

.footer__phone-icon {
	width: 1.2rem;
	height: 1.2rem;
}

.footer__column h2 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: var(--tria-white);
}

.footer-menu,
.footer-list {
	display: grid;
	gap: 0.7rem;
}

.footer-menu a,
.footer-list a {
	color: rgba(255, 255, 255, 0.76);
}

.footer-menu a:hover,
.footer-list a:hover,
.footer__bottom a:hover {
	color: var(--tria-white);
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0 1.25rem;
	font-size: 0.92rem;
}

.floating-contact {
	position: fixed;
	right: clamp(0.9rem, 1.8vw, 1.4rem);
	bottom: 1.2rem;
	z-index: 44;
	display: grid;
	gap: 0.85rem;
}

.floating-contact__item {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	min-width: 12.8rem;
	padding: 0.85rem 1rem;
	border-radius: 1rem;
	box-shadow: 0 18px 40px rgba(12, 13, 16, 0.18);
	color: var(--tria-white);
	transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.floating-contact__item:hover {
	transform: translateY(-2px) translateX(-2px);
	box-shadow: 0 22px 46px rgba(12, 13, 16, 0.22);
	filter: saturate(1.03);
}

.floating-contact__item--whatsapp {
	background: linear-gradient(135deg, var(--tria-whatsapp), var(--tria-whatsapp-dark));
}

.floating-contact__item--phone {
	background: linear-gradient(135deg, var(--tria-accent), var(--tria-accent-dark));
}

.floating-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.25rem;
	height: 1.25rem;
}

.floating-contact__content {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.15;
}

.floating-contact__content strong {
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.floating-contact__content small {
	margin-top: 0.18rem;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.86);
}

.inner-hero {
	padding: 4rem 0 2.4rem;
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
	border-bottom: 1px solid var(--tria-line);
}

.inner-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
	gap: 2rem;
	align-items: end;
}

.inner-hero__panel p {
	max-width: 40rem;
	font-size: 1.02rem;
	color: #5b5e66;
}

.inner-hero__aside {
	display: grid;
	gap: 1rem;
	padding: 1.6rem;
	background: var(--tria-white);
	border: 1px solid var(--tria-line);
	box-shadow: var(--tria-shadow-soft);
}

.inner-hero__meta {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.inner-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6f737c;
}

.inner-hero__eyebrow::before {
	content: "";
	width: 1.6rem;
	height: 2px;
	background: rgba(214, 33, 44, 0.6);
}

.inner-hero__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 3rem;
	height: 3rem;
	padding: 0.75rem;
	background: rgba(214, 33, 44, 0.08);
	color: var(--tria-accent);
}

.inner-hero__aside strong {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.9rem;
	line-height: 1;
	color: var(--tria-title);
}

.inner-hero__aside p {
	margin: 0;
}

.inner-hero__actions,
.cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.service-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.service-card--archive {
	padding: 0;
	overflow: hidden;
}

.service-card__media {
	background: #eff0f2;
}

.service-card__media img {
	width: 100%;
	height: 100%;
	min-height: 15rem;
	object-fit: cover;
}

.service-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1.6rem;
}

.service-card__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a7d86;
}

.service-card__eyebrow::before {
	content: "";
	width: 1.4rem;
	height: 2px;
	background: rgba(214, 33, 44, 0.6);
}

.service-card__body .service-card__icon {
	margin-bottom: 0;
}

.cta-banner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
	padding: 2rem 2.2rem;
	background: linear-gradient(145deg, #111111 0%, #1d1d21 100%);
	box-shadow: var(--tria-shadow-strong);
	color: rgba(255, 255, 255, 0.8);
}

.cta-banner h2 {
	margin-bottom: 0.6rem;
	color: var(--tria-white);
}

.cta-banner p {
	margin: 0;
}

.service-single-section {
	background: #fafafa;
}

.service-single-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
	gap: 2rem;
	align-items: start;
}

.service-single__main,
.service-single__sidebar {
	background: var(--tria-white);
	border: 1px solid var(--tria-line);
	box-shadow: var(--tria-shadow-soft);
}

.service-single__main {
	overflow: hidden;
}

.service-single__media img {
	width: 100%;
	height: 100%;
	max-height: 32rem;
	object-fit: cover;
}

.service-single__body {
	padding: 2rem;
}

.service-single__sidebar {
	position: sticky;
	top: 6rem;
	display: grid;
	gap: 1.4rem;
	padding: 1.75rem;
}

.service-facts,
.service-related {
	display: grid;
	gap: 1rem;
	list-style: none;
}

.service-facts li {
	display: grid;
	grid-template-columns: 1.2rem minmax(0, 1fr);
	gap: 0.8rem;
	align-items: start;
}

.service-facts__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 0.2rem;
	color: var(--tria-accent);
}

.service-facts strong,
.service-related__item strong {
	display: block;
	margin-bottom: 0.15rem;
	color: var(--tria-title);
}

.service-facts span,
.service-related__item span {
	display: block;
	font-size: 0.94rem;
	color: #696d75;
}

.service-related__item {
	padding: 1rem 1.05rem;
	border: 1px solid var(--tria-line);
	background: #ffffff;
}

.service-related__item:hover {
	border-color: rgba(214, 33, 44, 0.28);
	transform: translateY(-2px);
}

.post-grid {
	display: grid;
	gap: 1.5rem;
}

.post-card {
	display: grid;
	grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
	overflow: hidden;
}

.post-card__media img,
.content-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body,
.content-card__body {
	padding: 2rem;
}

.post-card__meta {
	display: inline-block;
	margin-bottom: 0.55rem;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tria-accent);
}

.text-link {
	display: inline-flex;
	margin-top: 0.8rem;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tria-accent);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.7rem;
	height: 2.7rem;
	padding: 0 1rem;
	border: 1px solid var(--tria-line);
	background: #ffffff;
}

.page-numbers.current {
	border-color: var(--tria-accent);
	background: var(--tria-accent);
	color: var(--tria-white);
}

.entry-content {
	color: #383b42;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content a {
	color: var(--tria-accent);
	text-decoration: underline;
}

.entry-content blockquote {
	margin: 2rem 0;
	padding-left: 1.25rem;
	border-left: 3px solid var(--tria-accent);
	color: #5a5e68;
}

.empty-state,
.error-card {
	padding: 2.4rem;
	text-align: center;
}

.error-section {
	padding-top: 5rem;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.admin-bar .nav-wrap {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .nav-wrap {
		top: 46px;
	}
}

@media (max-width: 1260px) {
	.hero-banner__inner {
		gap: 1rem;
	}

	.service-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.service-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-layout,
	.about-grid {
		grid-template-columns: 1fr 1fr;
	}

	.cta-card {
		grid-column: 1 / -1;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gallery-card--wide {
		grid-column: span 2;
	}

	.footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.hero-banner {
		min-height: 38rem;
	}

	.hero-banner__inner {
		min-height: 38rem;
		flex-direction: column;
		justify-content: flex-end;
	}

	.hero-panel {
		padding: 4rem 0 1.5rem;
	}

	.hero-contact-card {
		align-self: flex-start;
		margin: 0 0 7rem;
	}

	.inner-hero__grid,
	.service-single-grid,
	.cta-banner {
		grid-template-columns: 1fr;
	}

	.process-grid,
	.contact-grid,
	.post-card {
		grid-template-columns: 1fr;
	}

	.gallery-heading {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 900px) {
	.main-navigation {
		position: absolute;
		top: calc(100% + 0.5rem);
		left: 1rem;
		right: 1rem;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	}

	.main-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.main-navigation .nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 1rem;
		background: #ffffff;
		border: 1px solid var(--tria-line);
		box-shadow: var(--tria-shadow-strong);
	}

	.nav-menu li + li {
		border-top: 1px solid var(--tria-line);
	}

	.nav-menu a {
		display: block;
		padding: 0.9rem 0;
	}

	.nav-menu .current-menu-item > a::after,
	.nav-menu a:hover::after {
		bottom: 0.2rem;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.header-contact {
		display: none;
	}

	.hero-highlights {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-layout,
	.process-layout,
	.about-grid,
	.service-archive-grid {
		grid-template-columns: 1fr;
	}

	.section-intro,
	.process-intro {
		max-width: 36rem;
	}
}

@media (max-width: 760px) {
	.section,
	.process-shell {
		padding: 4rem 0;
	}

	.process-section {
		padding: 0;
	}

	.topbar__inner,
	.topbar__right,
	.nav-wrap__inner,
	.footer__bottom-inner {
		flex-wrap: wrap;
	}

	.hero-banner {
		min-height: 34rem;
	}

	.hero-banner__inner {
		min-height: 34rem;
	}

	.hero-panel {
		width: min(100%, 26rem);
		padding-top: 3.4rem;
	}

	.hero-highlights,
	.service-grid,
	.gallery-grid,
	.footer__grid {
		grid-template-columns: 1fr;
	}

	.floating-contact {
		right: 0.8rem;
		bottom: 0.85rem;
	}

	.floating-contact__item {
		min-width: 0;
		padding: 0.88rem;
		border-radius: 999px;
	}

	.floating-contact__content {
		display: none;
	}

	.inner-hero__aside,
	.service-single__body,
	.service-single__sidebar,
	.cta-banner {
		padding-left: 1.4rem;
		padding-right: 1.4rem;
	}

	.highlight-card {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	}

	.highlight-card:last-child {
		border-bottom: 0;
	}

	.gallery-card--tall,
	.gallery-card--wide {
		grid-column: auto;
		grid-row: auto;
	}

	.about-media {
		min-height: 23rem;
	}
}

@media (max-width: 560px) {
	.container {
		width: min(calc(100% - 1.25rem), var(--tria-max-width));
	}

	.topbar__inner {
		align-items: flex-start;
	}

	.topbar__address,
	.topbar__right {
		flex-wrap: wrap;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.button {
		width: 100%;
	}

	.hero-contact-card {
		width: 100%;
		margin-bottom: 5.2rem;
	}

	.experience-badge {
		right: 1rem;
		top: 1rem;
		width: 8.8rem;
	}

	.post-card__body,
	.content-card__body,
	.contact-panel,
	.contact-form-card {
		padding: 1.4rem;
	}
}
