/*
Theme Name: TD Service
Theme URI:
Author:
Author URI:
Description: Minimal blank theme for TD Service.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: td-service
*/

/* -------------------------------------------------------------------------
   Header layout
   ------------------------------------------------------------------------- */

:root {
	--td-container-padding: 40px;
	--td-section-padding: 80px;
	--td-page-hero-height: 800px;
	--td-header-height: 116px;
	--td-nav-height: 72px;
}

.site-header {
	position: relative;
	z-index: 1001;
	width: 100%;
	max-width: none;
	background: transparent;
}

.header-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 var(--td-container-padding);
}

/* -------------------------------------------------------------------------
   Top bar
   ------------------------------------------------------------------------- */

.top-bar {
	width: 100%;
	background-color: #2e2e20;
	color: #fff;
	overflow: hidden;
	max-height: 80px;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.top-bar--hidden {
	max-height: 0;
	opacity: 0;
}

.top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 44px;
	font-size: 0.875rem;
}

.top-bar__contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-bar__contact a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.top-bar__icon {
	flex-shrink: 0;
	color: #df9e42;
	font-size: 12px;
	line-height: 1;
}

.top-bar__divider {
	width: 1px;
	height: 16px;
	background-color: rgba(255, 255, 255, 0.35);
	list-style: none;
}

.top-bar__contact a:hover,
.top-bar__contact a:focus-visible {
	color: #df9e42;
}

.top-bar__contact a:hover .top-bar__icon,
.top-bar__contact a:focus-visible .top-bar__icon {
	color: #df9e42;
}

.top-bar__cta {
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}

.top-bar__cta-link {
	color: #df9e42;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
}

.top-bar__cta-link:hover,
.top-bar__cta-link:focus-visible {
	color: #df9e42;
	text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Main navigation
   ------------------------------------------------------------------------- */

.main-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(46, 46, 32, 0.55);
}

.main-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.site-branding .site-title,
.site-branding .custom-logo-link {
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
	text-decoration: none;
}

.site-branding .custom-logo-link img {
	display: block;
	max-height: 48px;
	width: auto;
}

.main-nav__menu {
	flex-shrink: 0;
}

.menu--primary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu--primary a {
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
}

.menu--primary a:hover,
.menu--primary a:focus-visible {
	color: #df9e42;
}

.menu--primary .current-menu-item > a,
.menu--primary .current_page_item > a {
	color: #df9e42;
}

.main-nav__toggle {
	display: none;
	flex-direction: column;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 4px;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.main-nav__toggle:hover,
.main-nav__toggle:focus-visible {
	border-color: #df9e42;
	background-color: rgba(223, 158, 66, 0.15);
	outline: none;
}

.main-nav__toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px;
	background-color: #fff;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.main-nav__toggle[aria-expanded='true'] .main-nav__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.main-nav__toggle[aria-expanded='true'] .main-nav__toggle-bar:nth-child(2) {
	opacity: 0;
}

.main-nav__toggle[aria-expanded='true'] .main-nav__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.main-nav__overlay {
	display: none;
}

.mobile-drawer__header,
.mobile-drawer__contact {
	display: none;
}

body.nav-open {
	overflow: hidden;
}

/* -------------------------------------------------------------------------
   Global layout
   ------------------------------------------------------------------------- */

body {
	font-family: Poppins, sans-serif;
}

.site-main {
	width: 100%;
	max-width: none;
}

.site-main:has(> .hero),
.site-main:has(> .page-hero) {
	margin-top: calc(-1 * var(--td-header-height));
}

.site-container,
.footer-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 var(--td-container-padding);
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

.site-footer {
	width: 100%;
	max-width: none;
	background-color: #2e2e20;
	border-top: 1px solid #df9e42;
	color: #7e7c76;
	font-weight: 400;
}

.footer-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 var(--td-container-padding);
}

.site-footer__main {
	padding-top: 110px;
	padding-bottom: 40px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 20px 40px;
}

.footer-column__title {
	position: relative;
	margin: 0 0 33px;
	padding-bottom: 13px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
}

.footer-column__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 70px;
	height: 1px;
	background: linear-gradient(to right, #e4dacc, rgba(228, 218, 204, 0));
}

.footer-column__title--light::after {
	background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.footer-column__text {
	margin: 0 0 20px;
	padding-right: 42px;
	font-size: 15px;
	line-height: 24px;
}

.footer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 150px;
	height: 42px;
	padding: 0;
	white-space: nowrap;
	border: 1px solid rgba(228, 218, 204, 0.15);
	border-radius: 100px;
	background-color: transparent;
	color: #df9e42;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-decoration: none;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-button:hover,
.footer-button:focus-visible {
	background-color: #df9e42;
	border-color: #df9e42;
	color: #fff;
}

.footer-links,
.footer-contact {
	margin: 0;
	padding: 0 0 0 6px;
	list-style: none;
}

.footer-links li {
	position: relative;
	padding: 0 0 5px 10px;
}

.footer-links li::before {
	content: '';
	position: absolute;
	left: -5px;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #7e7c76;
}

.footer-links a {
	color: #7e7c76;
	font-size: 16px;
	font-weight: 400;
	line-height: 25.6px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: #df9e42;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding-bottom: 5px;
	font-size: 16px;
	line-height: 25.6px;
}

.footer-contact__icon {
	flex-shrink: 0;
	padding-top: 4px;
	color: #df9e42;
}

.footer-contact a {
	color: #7e7c76;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
	color: #df9e42;
}

.site-footer__bar {
	padding-bottom: 20px;
}

.site-footer__bar-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	padding-top: 21px;
	border-top: 1px solid #7e7c76;
	font-size: 15px;
	line-height: 24px;
}

.site-footer__bar-item {
	margin: 0;
}

.site-footer__bar-item--center {
	text-align: center;
}

.site-footer__bar-item--right {
	text-align: right;
}

.site-footer__bar-item a {
	color: #7e7c76;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer__bar-item a:hover,
.site-footer__bar-item a:focus-visible {
	color: #df9e42;
}

.site-footer__bar-separator {
	margin: 0 6px;
}

.site-footer__finix {
	position: relative;
	display: inline-block;
	color: #df9e42 !important;
}

.site-footer__finix::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background-color: #df9e42;
	transition: width 0.3s ease;
}

.site-footer__finix:hover::after,
.site-footer__finix:focus-visible::after {
	width: 100%;
}


/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 150px;
	height: 40px;
	padding: 0;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
	border: none;
	background-color: #df9e42;
	color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
	border: 1px solid #df9e42;
	background-color: #fff;
	color: #2e2e20;
}

.btn--outline {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
}

.btn--outline:hover,
.btn--outline:focus-visible {
	border: 1px solid #df9e42;
	background-color: #fff;
	color: #2e2e20;
}

.btn--service {
	border: none;
	background-color: #df9e42;
	color: #fff;
}

.btn--service:hover,
.btn--service:focus-visible {
	border: 1px solid #df9e42;
	background-color: #fff;
	color: #2e2e20;
}

/* -------------------------------------------------------------------------
   Shared section styles
   ------------------------------------------------------------------------- */

.section-label {
	margin: 0 0 20px;
	color: #df9e42;
	font-size: 18px;
}

.section-label--accent {
	color: #d4922a;
}

.section-title {
	margin: 0 0 20px;
	font-weight: 700;
	line-height: 1.2;
}

.section-title--dark {
	color: #2e2e20;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.section-title--light {
	color: #fff;
	font-size: clamp(1.875rem, 3.5vw, 2.5rem);
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */

.hero {
	position: relative;
	width: 100%;
	max-width: none;
	height: 100vh;
	margin-top: 0;
	padding-top: 0;
	overflow: hidden;
}

.hero-slideshow,
.hero-slideshow__slide,
.hero-slideshow__slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-slideshow__slide img {
	object-fit: cover;
}

.hero-slideshow__slide {
	opacity: 0;
	transition: opacity 1.25s ease-in-out;
}

.hero-slideshow__slide.is-active {
	opacity: 1;
}

.hero-slideshow__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.5);
	pointer-events: none;
}

.hero-slideshow__overlay--dark {
	background-color: rgba(0, 0, 0, 0.75);
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}

.hero__title {
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
}

.hero__subtitle {
	margin: 0 0 20px;
	color: #fff;
	font-size: 18px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

/* -------------------------------------------------------------------------
   Highlights bar
   ------------------------------------------------------------------------- */

.highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	max-width: none;
}

.highlights__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-sizing: border-box;
	min-height: 200px;
	height: auto;
	padding: 24px 16px;
	font-family: Poppins, sans-serif;
	font-size: clamp(1rem, 2.5vw, 1.375rem);
	font-weight: 700;
	font-style: normal;
	line-height: 1.3;
	text-align: center;
	white-space: normal;
}

.highlights__panel--dark {
	background-color: #2e2e20;
	color: #fff;
}

.highlights__panel--accent {
	background-color: #df9e42;
	color: #fff;
}

.highlights__panel--light {
	background-color: #fff;
	color: #2e2e20;
}

.highlights__heading,
.highlights__subtext {
	margin: 0;
	font: inherit;
}

/* -------------------------------------------------------------------------
   About section
   ------------------------------------------------------------------------- */

.about-section {
	width: 100%;
	max-width: none;
	background-color: #f4ede4;
}

.about-section__inner {
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.about-section__content {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	max-width: 50%;
	padding-right: 20px;
}

.about-section__content .section-label,
.about-section__content .section-title {
	margin: 0;
	line-height: normal;
}

.about-section__text {
	margin: 0;
	max-width: 680px;
	color: #2e2e20;
	font-size: 16px;
	line-height: normal;
}

.about-section__media {
	display: flex;
	flex: 1 1 50%;
	align-items: center;
	justify-content: flex-end;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	max-width: 50%;
	height: auto;
	padding-left: 20px;
	overflow: hidden;
}

.about-section__photo {
	display: block;
	flex-shrink: 0;
	width: 100%;
	max-width: 677px;
	height: auto;
	aspect-ratio: 677 / 522;
	border: none;
	outline: none;
	border-radius: 8px;
	object-fit: cover;
}

/* -------------------------------------------------------------------------
   Services section
   ------------------------------------------------------------------------- */

.services-section {
	position: relative;
	width: 100%;
	max-width: none;
	overflow: hidden;
}

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

.services-section__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.8);
}

.services-section__inner {
	position: relative;
	z-index: 1;
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.services-section__header {
	max-width: 700px;
	margin-bottom: 40px;
}

.services-section__intro {
	margin: 0;
	color: #d1d6db;
	font-size: 16px;
	line-height: 1.6;
}

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

.service-card {
	position: relative;
	box-sizing: border-box;
	height: 330px;
	padding: 0;
	overflow: hidden;
	border: 1px solid #808080;
	border-radius: 8px;
	background-color: rgba(0, 0, 0, 0.15);
}

.service-card__icon {
	position: absolute;
	top: 49px;
	left: 49px;
	margin: 0;
	color: #fff;
	font-size: 56px;
	line-height: 1;
}

/* fa-sparkles is Pro-only; render the free sparkles SVG at the same size/position. */
.service-card__icon .fa-sparkles::before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background-color: currentColor;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8zM87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8L87.7 218.2c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8L57.5 166.5 5.8 151.7c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8L72.3 69.8c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8zM208 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6 .9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8zM87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8L87.7 218.2c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8L57.5 166.5 5.8 151.7c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8L72.3 69.8c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8zM208 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6 .9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.service-card__title {
	position: absolute;
	top: 141px;
	right: 19px;
	left: 19px;
	margin: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
}

.service-card__text {
	position: absolute;
	top: 177px;
	right: 19px;
	left: 19px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 14px;
	line-height: normal;
}

.service-card__cta {
	position: absolute;
	bottom: 20px;
	left: 19px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-card__cta,
.service-card:focus-within .service-card__cta {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (hover: none), (pointer: coarse) {
	.service-card__cta {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

/* -------------------------------------------------------------------------
   Craft tabs section
   ------------------------------------------------------------------------- */

.craft-section {
	width: 100%;
	max-width: none;
	background-color: #fff;
}

.craft-section__inner {
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.craft-section__content {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	max-width: 50%;
	padding-right: 20px;
}

.craft-section__content .section-label,
.craft-section__content .section-title,
.craft-section__intro {
	margin: 0;
	line-height: normal;
}

.craft-section__content .section-title {
	font-size: clamp(1.875rem, 3.5vw, 2.5rem);
}

.craft-section__intro {
	max-width: 500px;
	color: #2e2e20;
	font-size: 16px;
}

.craft-tabs {
	width: 100%;
}

.craft-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 44px;
}

.craft-tabs__tab {
	min-width: 110px;
	min-height: 44px;
	height: auto;
	padding: 10px 24px;
	border: 0;
	background-color: #f4ede4;
	color: #2e2e20;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.craft-tabs__tab.is-active {
	background-color: #df9e42;
	color: #fff;
}

.craft-tabs__tab:not(.is-active):hover,
.craft-tabs__tab:not(.is-active):focus-visible {
	background-color: #df9e42;
	color: #fff;
}

.craft-tabs__panel {
	display: none;
	width: 100%;
	padding: 20px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	background-color: #fff;
}

.craft-tabs__panel.is-active {
	display: block;
}

.craft-tabs__panel p {
	margin: 0;
	color: #2e2e20;
	font-size: 14px;
	line-height: normal;
}

.craft-section__media {
	display: flex;
	flex: 1 1 50%;
	align-items: center;
	justify-content: flex-end;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	max-width: 50%;
	height: auto;
	padding-left: 20px;
	overflow: hidden;
}

.craft-section__photo {
	display: block;
	flex-shrink: 0;
	width: 100%;
	max-width: 550px;
	height: auto;
	aspect-ratio: 550 / 520;
	border: none;
	border-radius: 8px;
	outline: none;
	object-fit: cover;
	object-position: center top;
}

/* -------------------------------------------------------------------------
   Team section
   ------------------------------------------------------------------------- */

.team-section {
	width: 100%;
	max-width: none;
	background-color: #2e2e20;
}

.team-section__inner {
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.team-section__header {
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}

.team-section__intro {
	margin: 0 auto;
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}

.team-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 30px;
	border-radius: 8px;
	background-color: #fff;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	transition-delay: var(--delay, 0s);
}

.team-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.team-card__name {
	margin: 0;
	max-width: 285px;
	color: #2e2e20;
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.team-card__role {
	margin: 0;
	color: #8c949e;
	font-size: 14px;
	line-height: normal;
}

.team-card__skills {
	margin: 0;
	max-width: 285px;
	color: #1a1a1a;
	font-size: 14px;
	line-height: normal;
	text-align: center;
}

/* -------------------------------------------------------------------------
   Kontakt page
   ------------------------------------------------------------------------- */

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

.kontakt-section {
	width: 100%;
	max-width: none;
	background-color: #fff;
}

.kontakt-section__inner {
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.kontakt-section__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	margin-bottom: 40px;
	text-align: center;
}

.kontakt-section__label {
	margin: 0;
	color: #d4922a;
	font-size: 18px;
	line-height: normal;
}

.kontakt-section__title {
	margin: 0;
	color: #1a1a1a;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: normal;
}

.kontakt-section__intro {
	margin: 0;
	max-width: 700px;
	color: #8c949e;
	font-size: 16px;
	line-height: normal;
}

.kontakt-section__layout {
	--kontakt-column-height: 560px;
	--kontakt-column-gap: 30px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: var(--kontakt-column-gap);
	align-items: stretch;
}

.kontakt-info {
	display: flex;
	flex-direction: column;
	gap: var(--kontakt-column-gap);
	height: var(--kontakt-column-height);
	min-height: var(--kontakt-column-height);
}

.kontakt-info__card {
	display: flex;
	flex: 1 1 0;
	gap: 16px;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	min-height: 0;
	padding: 20px 20px 20px 30px;
	border: 1px solid #cccccc;
	border-radius: 8px;
	background-color: #f4ede4;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-info__card:hover,
.kontakt-info__card:focus-visible {
	background-color: #fff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.kontakt-info__icon-group {
	position: relative;
	flex-shrink: 0;
	width: 71.125px;
	height: 71.125px;
	transition: transform 0.6s ease;
}

.kontakt-info__card:hover .kontakt-info__icon-group,
.kontakt-info__card:focus-visible .kontakt-info__icon-group {
	transform: scale(0.9);
}

.kontakt-info__icon-outer {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background-color: #e4dacc;
	transition: background-color 0.3s ease;
}

.kontakt-info__card:hover .kontakt-info__icon-outer,
.kontakt-info__card:focus-visible .kontakt-info__icon-outer {
	background-color: #e4dacc;
}

.kontakt-info__icon-inner {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55.125px;
	height: 55.125px;
	border-radius: 50%;
	background-color: #fff;
	color: #df9e42;
	font-size: 25px;
	line-height: 1;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.kontakt-info__card:hover .kontakt-info__icon-inner,
.kontakt-info__card:focus-visible .kontakt-info__icon-inner {
	background-color: #df9e42;
	color: #fff;
}

.kontakt-info__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.kontakt-info__title {
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
}

.kontakt-info__detail {
	color: #8c949e;
	font-size: 14px;
	line-height: normal;
}

.kontakt-panel {
	display: flex;
	grid-column: 2;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: var(--kontakt-column-height);
	min-height: var(--kontakt-column-height);
	border: 0.5px solid #cccccc;
	border-radius: 8px;
	background-color: #f5ede0;
	overflow: hidden;
}

.kontakt-panel__media {
	display: flex;
	flex: 1 1 50%;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	padding: 30px;
}

.kontakt-panel__photo {
	display: block;
	flex-shrink: 0;
	width: 100%;
	max-width: 413px;
	height: auto;
	aspect-ratio: 413 / 500;
	border-radius: 8px;
	object-fit: cover;
	object-position: center;
}

.kontakt-form {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	padding: 30px 30px 30px 0;
}

.kontakt-form__field {
	width: 100%;
}

.kontakt-form__field input,
.kontakt-form__field textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 14px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background-color: #fff;
	color: #1a1a1a;
	font-family: inherit;
	font-size: 14px;
	line-height: normal;
}

.kontakt-form__field input {
	height: 55px;
}

.kontakt-form__field input::placeholder,
.kontakt-form__field textarea::placeholder {
	color: #8c949e;
}

.kontakt-form__field textarea {
	min-height: 210px;
	resize: vertical;
}

.kontakt-form__field input:focus,
.kontakt-form__field textarea:focus {
	outline: 2px solid #df9e42;
	outline-offset: 0;
}

.kontakt-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50px;
	background-color: #df9e42;
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.kontakt-form__submit:hover,
.kontakt-form__submit:focus-visible {
	border: 1px solid #df9e42;
	background-color: #fff;
	color: #2e2e20;
}

.kontakt-privacy {
	grid-column: 2;
	padding-left: 30px;
}

.kontakt-privacy__title {
	margin: 0 0 8px;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
}

.kontakt-privacy__text {
	margin: 0;
	color: #8c949e;
	font-size: 13px;
	line-height: normal;
}

.kontakt-privacy__text a {
	color: #d4922a;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.kontakt-privacy__text a:hover,
.kontakt-privacy__text a:focus-visible {
	color: #df9e42;
}

@keyframes kontakt-rise {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.kontakt-form__field--animate {
	opacity: 0;
	transform: translateY(30px);
}

.kontakt-section.is-animated .kontakt-form__field--animate {
	animation: kontakt-rise 0.6s ease-out forwards;
	animation-delay: var(--animate-delay, 0s);
}

.kontakt-map {
	width: 100%;
	max-width: none;
	height: 500px;
	background-color: #f4ede4;
}

.kontakt-map__frame {
	width: 100%;
	height: 500px;
	overflow: hidden;
	background-color: #fff;
	mix-blend-mode: luminosity;
}

.kontakt-map__embed {
	display: block;
	width: 100%;
	height: 500px;
}

/* -------------------------------------------------------------------------
   Tjenester page
   ------------------------------------------------------------------------- */

.tjenester-intro {
	width: 100%;
	max-width: none;
	background-color: #fff;
}

.tjenester-intro__inner {
	display: flex;
	gap: 40px;
	align-items: center;
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.tjenester-intro__media {
	flex: 1 1 45%;
	max-width: 648px;
	min-width: 0;
}

.tjenester-intro__photo {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 648 / 542;
	border: none;
	border-radius: 8px;
	object-fit: cover;
	object-position: center;
}

.tjenester-intro__content {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	min-width: 0;
}

.tjenester-intro__label {
	margin: 0;
	color: #d4922a;
	font-size: 18px;
	line-height: normal;
}

.tjenester-intro__title {
	margin: 0;
	color: #1a1a1a;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: normal;
}

.tjenester-intro__body {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}

.tjenester-intro__text {
	margin: 0;
	color: #6b6b6b;
	font-size: 16px;
	line-height: normal;
}

.tjenester-intro__lists {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	width: 100%;
}

.tjenester-intro__list {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tjenester-intro__item {
	display: flex;
	gap: 8px;
	align-items: center;
	min-height: 30px;
	color: #1a1a1a;
	font-size: 14px;
	line-height: normal;
}

.tjenester-intro__check {
	flex-shrink: 0;
	color: #d4922a;
	font-size: 14px;
	line-height: 1;
}

.tjenester-services .services-section__bg {
	opacity: 0.6;
}

.tjenester-services__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.tjenester-services__header .section-label,
.tjenester-services__header .section-title {
	margin: 0;
	line-height: normal;
}

.tjenester-services__intro {
	color: #fff;
	line-height: normal;
}

/* -------------------------------------------------------------------------
   Om oss — team section (light variant above footer)
   ------------------------------------------------------------------------- */

.om-team-section {
	width: 100%;
	max-width: none;
	background-color: #f4ede4;
}

.om-team-section__inner {
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.om-team-section__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}

.om-team-section__label {
	margin: 0;
	color: #df9e42;
	font-size: 18px;
	line-height: normal;
}

.om-team-section__title {
	margin: 0;
	color: #2e2e20;
	font-size: clamp(1.875rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: normal;
}

.om-team-section__intro {
	margin: 0;
	color: #2e2e20;
	font-size: 16px;
	line-height: normal;
}

/* -------------------------------------------------------------------------
   Om oss page
   ------------------------------------------------------------------------- */

.page-hero {
	position: relative;
	width: 100%;
	max-width: none;
	height: var(--td-page-hero-height);
	overflow: hidden;
}

.page-hero__media,
.page-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.page-hero__media img {
	object-fit: cover;
}

.page-hero--tjenester .page-hero__media img {
	object-position: center 10%;
}

.page-hero--personvern .page-hero__media img {
	object-position: center 15.2%;
}

.page-hero--personvern .page-hero__overlay {
	background-color: transparent;
}

.page-hero--personvern .page-hero__overlay::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 70px;
	background-color: rgba(0, 0, 0, 0.65);
}

.page-hero--personvern .page-hero__overlay::after {
	content: "";
	position: absolute;
	top: 110px;
	left: 0;
	width: 100%;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.page-hero--personvern .page-hero__title {
	font-size: 50px;
	font-weight: 700;
	line-height: normal;
}

.page-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.page-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
	justify-content: center;
	height: var(--td-page-hero-height);
}

.page-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: normal;
}

.page-hero__breadcrumb {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 18px;
	line-height: normal;
}

.page-hero__breadcrumb a {
	color: #df9e42;
	text-decoration: none;
	transition: color 0.3s ease;
}

.page-hero__breadcrumb a:hover,
.page-hero__breadcrumb a:focus-visible {
	color: #fff;
}

.page-hero__breadcrumb-sep {
	color: #fff;
}

.om-strength {
	position: relative;
	width: 100%;
	max-width: none;
	min-height: 1108px;
	background-color: #fff;
}

.om-strength__intro {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	padding-top: var(--td-section-padding);
	padding-bottom: 61px;
	text-align: center;
}

.om-strength__label {
	margin: 0;
	color: #d4922a;
	font-size: 18px;
	line-height: normal;
}

.om-strength__title {
	margin: 0;
	color: #1a1a1a;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: normal;
}

.om-strength__text {
	margin: 0;
	max-width: 750px;
	color: #6b6b6b;
	font-size: 16px;
	line-height: normal;
}

.om-strength__banner {
	width: 100%;
	max-width: none;
	height: 500px;
	overflow: hidden;
}

.om-strength__banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 10%;
}

.om-strength__cards-wrap {
	position: relative;
	margin-top: -113px;
	padding-bottom: var(--td-section-padding);
}

.om-strength__cards {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.om-strength__card {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	box-sizing: border-box;
	padding: 32px 24px;
	border: 1px solid #cccccc;
	border-radius: 8px;
	background-color: #fff;
	text-align: center;
}

.om-strength__card-icon {
	color: #d4922a;
	font-size: 48px;
	line-height: 1;
}

.om-strength__card-title {
	margin: 0;
	color: #1a1a1a;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
}

.om-strength__card-text {
	margin: 0;
	max-width: 380px;
	color: #6b6b6b;
	font-size: 14px;
	line-height: normal;
}

.belief-section {
	width: 100%;
	max-width: none;
	background-color: #2e2e20;
}

.belief-section__inner {
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: var(--td-section-padding);
	padding-bottom: var(--td-section-padding);
}

.belief-section__content {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	max-width: 50%;
	padding-right: 20px;
}

.belief-section__content .section-label {
	margin: 0;
	line-height: normal;
}

.belief-section__title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: normal;
}

.belief-section__text {
	margin: 0;
	max-width: 680px;
	color: #fff;
	font-size: 16px;
	line-height: normal;
}

.belief-section__media {
	display: flex;
	flex: 1 1 50%;
	align-items: center;
	justify-content: flex-end;
	box-sizing: border-box;
	min-width: 0;
	width: 50%;
	max-width: 50%;
	height: auto;
	padding-left: 20px;
	overflow: hidden;
}

.belief-section__photo {
	display: block;
	flex-shrink: 0;
	width: 100%;
	max-width: 677px;
	height: auto;
	aspect-ratio: 677 / 522;
	border: none;
	border-radius: 8px;
	outline: none;
	object-fit: cover;
	object-position: center;
}

/* -------------------------------------------------------------------------
   Personvern page
   ------------------------------------------------------------------------- */

.personvern-section {
	width: 100%;
	max-width: none;
	background-color: #fff;
}

.personvern-section__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1440px;
	margin: 0 auto;
	padding-right: var(--td-container-padding);
	padding-left: var(--td-container-padding);
}

.personvern-section__header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.personvern-section__doc-title {
	margin: 0;
	color: #2e2e20;
	font-size: 40px;
	font-weight: 700;
	line-height: normal;
}

.personvern-section__updated {
	margin: 0;
	color: #df9e42;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}

.personvern-section__body {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.personvern-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.personvern-section__heading {
	margin: 0;
	color: #2e2e20;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4;
}

.personvern-section__text {
	margin: 0;
	color: #2e2e20;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}

.personvern-section__text a {
	color: #2e2e20;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.personvern-section__text a:hover,
.personvern-section__text a:focus-visible {
	color: #df9e42;
}

.personvern-section__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
	color: #2e2e20;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	list-style-type: disc;
}

.personvern-section__list li {
	margin: 0;
}

.personvern-section__divider {
	margin: 0;
	border: 0;
	border-top: 1px solid #cccccc;
}

/* -------------------------------------------------------------------------
   Generic page templates
   ------------------------------------------------------------------------- */

.page-content {
	width: 100%;
	max-width: none;
	padding: var(--td-section-padding) 0;
}

.page-content__title {
	margin: 0 0 24px;
	color: #2e2e20;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
}

.page-content__body {
	color: #2e2e20;
	font-size: 16px;
	line-height: 1.7;
}

/* -------------------------------------------------------------------------
   Responsive — Tablet (max-width: 1023px)
   Component-specific layout; spacing/grids/typography in responsive.css
   ------------------------------------------------------------------------- */

@media (max-width: 1023px) {
	.highlights__panel {
		padding: 20px 12px;
		min-height: 180px;
	}

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

	.site-footer__bar-inner {
		grid-template-columns: 1fr;
		gap: 12px;
		text-align: center;
	}

	.site-footer__bar-item--left,
	.site-footer__bar-item--right {
		text-align: center;
	}

	.about-section__inner,
	.craft-section__inner,
	.belief-section__inner {
		flex-direction: column;
	}

	.about-section__content,
	.about-section__media,
	.craft-section__content,
	.craft-section__media,
	.belief-section__content,
	.belief-section__media {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
	}

	.about-section__content,
	.craft-section__content,
	.belief-section__content {
		padding-right: 0;
	}

	.about-section__media,
	.craft-section__media,
	.belief-section__media {
		justify-content: center;
		height: auto;
		padding-left: 0;
	}

	.craft-section__content .section-title {
		font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	}

	.om-strength {
		min-height: 0;
	}

	.om-strength__cards {
		flex-direction: column;
	}

	.om-strength__cards-wrap {
		margin-top: -60px;
	}

	.tjenester-intro__inner {
		flex-direction: column;
	}

	.tjenester-intro__media {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
	}

	.tjenester-intro__lists {
		flex-direction: column;
	}

	.kontakt-section__layout {
		grid-template-columns: 1fr;
	}

	.kontakt-info {
		height: auto;
		min-height: 0;
	}

	.kontakt-info__card {
		flex: 0 0 auto;
		min-height: auto;
	}

	.kontakt-panel {
		grid-column: 1;
		flex-direction: column;
		height: auto;
		min-height: 0;
	}

	.kontakt-panel__media,
	.kontakt-form {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
	}

	.kontakt-panel__media {
		justify-content: center;
	}

	.kontakt-form {
		padding: 30px;
	}

	.kontakt-privacy {
		grid-column: 1;
		padding-left: 0;
	}

}

/* -------------------------------------------------------------------------
   Responsive — Mobile navigation drawer (max-width: 768px)
   ------------------------------------------------------------------------- */

@media (max-width: 768px) {
	.main-nav__toggle {
		display: flex;
	}

	.mobile-drawer__header,
	.mobile-drawer__contact {
		display: block;
	}

	.main-nav__menu {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1002;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
		width: 75%;
		height: 100vh;
		height: 100dvh;
		padding: 0;
		background-color: #2e2e20;
		overflow-x: hidden;
		overflow-y: auto;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.main-nav__menu.is-open {
		transform: translateX(0);
	}

	.mobile-drawer__header {
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: space-between;
		padding: 28px 24px 20px;
	}

	.mobile-drawer__brand {
		color: #fff;
		font-size: 1.75rem;
		font-weight: 700;
		line-height: 1.2;
	}

	.mobile-drawer__close {
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: center;
		padding: 4px;
		border: none;
		background: transparent;
		color: #fff;
		font-size: 1.5rem;
		line-height: 1;
		cursor: pointer;
		transition: color 0.3s ease;
	}

	.mobile-drawer__close:hover,
	.mobile-drawer__close:focus-visible {
		color: #df9e42;
		outline: none;
	}

	.menu--primary {
		flex: 1 1 auto;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0;
		margin: 0;
		padding: 0 24px;
	}

	.menu--primary li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.menu--primary li:last-child {
		border-bottom: none;
	}

	.menu--primary a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 18px 0;
		color: #fff;
		font-size: 1.125rem;
		font-weight: 500;
	}

	.menu--primary a:hover,
	.menu--primary a:focus-visible {
		color: #fff;
	}

	.menu--primary a::after {
		content: '\f054';
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border-radius: 4px;
		background-color: #df9e42;
		color: #fff;
		font-family: 'Font Awesome 6 Free';
		font-size: 14px;
		font-weight: 900;
		line-height: 1;
	}

	.menu--primary .current-menu-item > a,
	.menu--primary .current_page_item > a {
		color: #fff;
	}

	.mobile-drawer__contact {
		flex-shrink: 0;
		padding: 28px 24px 36px;
	}

	.mobile-drawer__contact-title {
		margin: 0 0 20px;
		color: #fff;
		font-size: 1.125rem;
		font-weight: 700;
		line-height: 1.4;
	}

	.mobile-drawer__contact-link {
		display: flex;
		align-items: center;
		gap: 14px;
		margin-bottom: 16px;
		color: #fff;
		font-size: 1rem;
		font-weight: 400;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.mobile-drawer__contact-link:last-child {
		margin-bottom: 0;
	}

	.mobile-drawer__contact-link:hover,
	.mobile-drawer__contact-link:focus-visible {
		color: #df9e42;
		outline: none;
	}

	.mobile-drawer__contact-icon {
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background-color: #df9e42;
		color: #fff;
		font-size: 14px;
		line-height: 1;
	}

	.main-nav__overlay {
		position: fixed;
		inset: 0;
		z-index: 1001;
		display: block;
		background-color: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.main-nav__overlay.is-visible {
		opacity: 1;
		visibility: visible;
	}

	.belief-section__content .btn--primary {
		margin-bottom: 40px;
	}
}

/* -------------------------------------------------------------------------
   Responsive — Mobile (max-width: 767px)
   ------------------------------------------------------------------------- */

@media (max-width: 767px) {
	.top-bar {
		display: none;
	}

	.highlights__panel {
		min-height: 140px;
		padding: 20px 16px;
	}

	.site-footer__main {
		padding-top: 60px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.footer-column__text {
		padding-right: 0;
	}

	.page-hero__media img {
		object-position: center center;
	}

	.page-hero--tjenester .page-hero__media img {
		object-position: center center;
	}

	.page-hero--personvern .page-hero__media img {
		object-position: center 15.2%;
	}

	.page-hero--personvern .page-hero__title {
		font-size: clamp(2rem, 8vw, 50px);
	}

	.page-hero__breadcrumb {
		font-size: 16px;
	}

	.om-strength__intro {
		padding-bottom: 40px;
	}

	.om-strength__cards-wrap {
		margin-top: -40px;
	}

	.om-strength__banner {
		height: 280px;
	}

	.kontakt-map,
	.kontakt-map__frame,
	.kontakt-map__embed {
		height: 360px;
	}

	.craft-tabs__tab {
		flex: 1 1 auto;
		min-width: 0;
	}

	.personvern-section__doc-title {
		font-size: clamp(1.75rem, 6vw, 40px);
	}

	.personvern-section__updated {
		font-size: 16px;
	}

	.personvern-section__heading {
		font-size: clamp(1.5rem, 5vw, 32px);
	}

	.personvern-section__text,
	.personvern-section__list {
		font-size: 16px;
	}

	.about-section__content .btn--phone {
		margin-bottom: 32px;
	}
}

/* -------------------------------------------------------------------------
   Responsive — Small mobile (max-width: 480px)
   ------------------------------------------------------------------------- */

@media (max-width: 480px) {
	.hero__subtitle {
		font-size: 16px;
	}

	.hero__actions {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.highlights__panel {
		min-height: 120px;
		font-size: 1rem;
	}

	.om-strength__banner {
		height: 220px;
	}

	.om-strength__cards-wrap {
		margin-top: -24px;
	}

	.kontakt-map,
	.kontakt-map__frame,
	.kontakt-map__embed {
		height: 280px;
	}

	.kontakt-form {
		padding: 20px;
	}

	.kontakt-panel__media {
		padding: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kontakt-form__field--animate {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.main-nav__menu,
	.main-nav__overlay,
	.main-nav__toggle-bar {
		transition: none;
	}
}
