@font-face {
	font-family: 'Didot';
	src: url('fonts/Didot.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Didot';
	src: url('fonts/Didot-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Didot';
	src: url('fonts/Didot-Italic.otf') format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Didot-Title';
	src: url('fonts/Didot-Title.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}


html {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background: white;
	font-family: 'Inter', sans-serif;
	color: #000;
	font-weight: 400;
	font-size: 13px;
}

a img {
	border: none;
}

a {
	text-decoration: none;
	color: black;
	outline: 0;
}

a:hover {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:focus {
	outline: none;
}

a[href^=tel] {
	text-decoration: inherit;
	color: inherit;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}

input,
button,
textarea {
	font-family: 'RobotoRegular', sans-serif;
}

.empty {
	padding: 10px 0;
}

.clear {
	clear: both;
}

.relative {
	position: relative;
}

.center {
	text-align: center;
}

.disabled {
	display: none;
}

div,
header,
footer,
main,
section,
nav,
ul,
h1,
h2,
h3,
h4,
p,
li,
input,
nav {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.outer {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.inner {
	position: relative;
	margin: auto;
	max-width: 1400px;
}

.inner.small {
	position: relative;
	margin: auto;
	max-width: 1200px;
}

.mobphone {
	display: none;
}

.nav-toggle,
.nav-toggle-label {
	display: none;
}

header {
	position: fixed;
	height: 88px;
	width: 100%;
	z-index: 9999;
	background: white;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

header .inner {
	display: flex;
	align-items: center;
	/* vertikāli centrē */
	justify-content: space-between;
	/* sadala saturu */
	height: 88px;
}

header .logo a {
	display: block;
	padding: 5px;
}

header .logo img {
	width: auto;
	max-width: 330px;
	height: 65px;
	display: block;
}

header .logo .logo-mobile {
	display: none;
}

header nav {}

header nav ul,
.lang ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* pats nav + valodu bloks */
header nav,
.lang {
	height: 100%;
}

/* nav pa labi */
header nav {
	margin-left: auto;
}

/* galvenais menu un valoda */
header nav>ul,
.lang>ul {
	display: flex;
	gap: 0;
	height: 100%;
	align-items: stretch;
}

/* pirmais līmenis = header augstumā */
header nav>ul>li,
.lang>ul>li {
	position: relative;
	display: flex;
	align-items: stretch;
	height: 100%;
}

/* dropdown li */
header nav ul ul li,
.lang ul ul li {
	position: relative;
}

/* top-level linki */
header nav>ul>li>a,
.lang>ul>li>a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 24px;
	text-decoration: none;
	color: #111;
	white-space: nowrap;
}

/* top-level underline hover */
header nav>ul>li:hover>a,
.lang>ul>li:hover>a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 12px;
}

/* dropdown linki */
header nav ul ul a,
.lang ul ul a {
	display: inline-block;
	padding: 10px 0;
	text-decoration: none;
	color: #111;
	white-space: nowrap;
}

/* dropdown underline hover */
header nav ul ul li:hover>a,
.lang ul ul li:hover>a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

/* dropdown panelis */
header nav ul ul,
.lang ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: transparent;
	padding: 20px 14px 20px 24px;
	z-index: 1000;
}

/* full-width baltais fons + augšējā līnija */
header nav ul ul::before,
.lang ul ul::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -100vw;
	right: -100vw;
	background: #fff;
	border-top: 1px solid #7d7d7d;
	z-index: -1;
}

/* show dropdown */
header nav>ul>li:hover>ul,
.lang>ul>li:hover>ul {
	display: block;
}

/* bultiņa */
header nav>ul>li:has(ul)>a::after,
.lang>ul>li:has(ul)>a::after {
	content: "";
	display: inline-block;
	margin-left: 7px;
	width: 0;
	height: 0;
	position: relative;
	top: 1px;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 4px solid currentColor;
	transition: transform 0.2s ease;
}

/* bultiņas rotācija */
header nav>ul>li:hover>a::after,
.lang>ul>li:hover>a::after {
	transform: rotate(180deg);
}

/* distance starp nav un lang */
.lang {
	margin-left: 50px;
}





main {
	flex: 1;
	position: relative;
	padding-top: 88px;
}


footer {
	background: #FFFAF5;
}

footer .slogan {
	font-family: 'Didot', serif;
	text-align: center;
	padding: 50px 0 50px 0;
}

footer .slogan .quotation {
	font-size: 100px;
	line-height: 100%;
	margin-bottom: -35px;
	font-style: italic;
}

footer .slogan .text {
	font-size: 26px;
	line-height: 130%;
	text-transform: uppercase;
	font-style: italic;
	letter-spacing: 0.02em;
}

footer .partner-strip {
	gap: 34px;
	border-top: 1px solid #1d1d1b;
	border-bottom: 1px solid #1d1d1b;
	margin-bottom: 50px;
	margin-top: 50px;

	display: flex;
	justify-content: space-between;
	gap: 10px;
	/* atstarpe starp diviem */
}

.partner {
	/* visi vienādi plati */
	text-align: center;
	line-height: 150%;
	padding: 30px 0;
}

.partner-strip .partner:first-child {
	text-align: left;
}

.partner-strip .partner:last-child {
	text-align: right;
}

footer .bottom-line .inner {
	display: flex;
	align-items: center;
	/* vertikāli centrē */
	justify-content: space-between;
	/* sadala saturu */
}

footer .partner-title {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
	line-height: 40px;
}

footer .partner-logo img {
	width: auto;
	height: 40px;
	display: block;
}

footer .bottom-line {
	background: #c2a58d;
	padding: 40px 0;
}

footer .bottom-line .copyright {
	font-size: 12px;
}

footer .bottom-line nav ul {
	list-style: none;
	/* noņem bullet */
	margin: 0;
	padding: 0;
	display: flex;
	/* li blakus */
	gap: 40px;
}

footer .bottom-line nav ul li {
	position: relative;
}

footer .bottom-line nav ul li a {
	text-decoration: none;
	color: black;
	font-size: 12px;
}


footer .bottom-line nav ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	/* zemāk par parasto underline */
	width: 100%;
	height: 1px;
	background: black;
	opacity: 0;
}

footer .bottom-line nav ul li a:hover::after {
	opacity: 1;
}

footer .footer-main {
	padding: 0 0 50px 0;
}

footer .footer-main .inner {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

footer .footer-main .logo img {
	width: auto;
	height: 120px;
	display: block;
}

footer .cta-title {
	font-family: 'Didot', serif;
	font-size: 25px;
	font-style: italic;
	line-height: 150%;
	padding: 0 0 8px 0;
}

footer .footer-column ul {
	list-style-type: none;
	position: relative;
}

footer .footer-column ul li {
	position: relative;
}

footer .footer-column ul li a {
	color: black;
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	padding: 8px 0;
	position: relative;
}

footer .footer-column ul ul li a {
	text-transform: none;
	font-weight: normal;
	padding: 6px 0;
}

footer .footer-column ul li a:hover{
	text-decoration: underline;
}

footer address.footer-column {
	font-style: normal;
}

footer .footer-column.social a, footer .footer-column.contact a {
	color: black;
	font-weight: normal;
	padding: 6px 0;
	display: block;
}

footer .footer-column .title {
	color: black;
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	padding: 8px 0;
	position: relative;
}

footer .footer-column a:hover {
	text-decoration: underline;
}

.back-to-top {
	position: fixed;
	right: 28px;
	bottom: 32px;
	width: 58px;
	height: 58px;
	background: #1d1d1b;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.back-to-top::before {
	content: "";
	width: 16px;
	height: 16px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: translateY(5px) rotate(45deg);
}

html {
	scroll-behavior: smooth;
}

.titul {
	position: relative;
	width: 100%;
	height: 600px;
}

.titul img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.titul.imgb img {
	object-position: center bottom;
}

.intro {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	width: 100%;
	max-width: 1400px;
	padding: 0 20px;
	box-sizing: border-box;

	color: white; /* ja uz bildes */
	z-index: 2;
	
	font-family: 'Didot', serif;
	font-size: 50px;
}

.intro.we-create {
	position: absolute;
	top: 50%;
	left: 45%;   /* cik tālu pa labi */
	transform: translateY(-50%);
	
	width: 50%;  /* teksts aizņem labo pusi */
	
	color: white;
	z-index: 2;
	
	font-family: 'Didot', serif;
	font-size: 60px;
}

.intro .smaller {	
	font-family: 'Didot', serif;
	font-size: 30px;
	padding-top: 20px;
}

.intro .smaller .subtitle {
	padding: 0 0 15px 0;
}

main .content {
	width: 100%;
	padding-top: 50px;
}

main .content section {
	width: 100%;
	max-width: 1400px;
	margin: auto;
	text-align: center;
}

main .content section img {
	width: 100%;
	display: block;
}

.spacer {
	height: 50px;
}

h1 {
	font-family: 'Didot', serif;
	font-size: 50px;
	font-weight: 400;
	padding: 10px 0;
}

.contact-info {
	padding-bottom: 100px;
}

.contact-info .contacts {
	padding-top: 50px;
}

.contact-info .contacts .title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	padding: 10px 0 5px 0;
}

.contact-info .cta-title {
	font-family: 'Didot', serif;
	font-size: 25px;
	font-style: italic;
	line-height: 150%;
	padding: 0 0 8px 0;
}

.contact-info .follow .title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	padding: 60px 0 5px 0;
}

.contact-info .follow .instagram a {
	display: block;
	background: url(../include/images/instagram.svg) no-repeat;
	background-size: 25px auto;
	background-position: 0 0;
	padding: 5px 0 5px 35px;
	margin: 10px 0;
}

.contact-info .follow .facebook a {
	display: block;
	background: url(../include/images/facebook.svg) no-repeat;
	background-size: 25px auto;
	background-position: 0 0;
	padding: 5px 0 5px 35px;
	margin: 10px 0;
}

.contact-info .follow .substack a {
	display: block;
	background: url(../include/images/substack.svg) no-repeat;
	background-size: 18px auto;
	background-position: 3px 3px;
	padding: 5px 0 5px 35px;
	margin: 10px 0;
}

@media (max-width: 1440px) {
	.inner,
	.inner.small,
	main .content section {
		max-width: none;
		width: 100%;
		padding-left: 28px;
		padding-right: 28px;
	}

	header nav>ul>li>a,
	.lang>ul>li>a {
		padding-left: 16px;
		padding-right: 16px;
	}

	.intro {
		padding-left: 28px;
		padding-right: 28px;
	}
}

@media (max-width: 1320px) {
	footer .partner-strip {
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 56px;
		row-gap: 28px;
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.partner {
		padding: 0;
	}

	footer .partner-title {
		width: 100%;
		line-height: 1.4;
		padding-bottom: 4px;
		text-align: center;
	}

	.partner-strip .partner,
	.partner-strip .partner:first-child,
	.partner-strip .partner:last-child {
		text-align: center;
	}

	footer .partner-logo img {
		margin: 0 auto;
	}
}

@media (max-width: 1024px) {
	header,
	header .inner {
		height: 126px;
	}

	main {
		padding-top: 126px;
	}

	header .inner {
		padding-left: 8.5vw;
		padding-right: 8.5vw;
	}

	header .logo .logo-desktop {
		display: none;
	}

	header .logo .logo-mobile {
		display: block;
		width: 200px;
		max-width: 32vw;
		height: auto;
		max-height: none;
	}

	.nav-toggle {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.nav-toggle-label {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 10px;
		margin-left: auto;
		width: 56px;
		height: 56px;
		cursor: pointer;
	}

	.nav-toggle-label span {
		display: block;
		width: 40px;
		height: 2px;
		margin-left: auto;
		background: #111;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
		transform: translateY(-6px) rotate(-45deg);
	}

	header nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: calc(100vh - 126px);
		max-height: calc(100vh - 126px);
		margin-left: 0;
		padding: 54px 8.5vw 70px;
		background: #fff;
		border-top: 1px solid #1d1d1b;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	}

	.nav-toggle:checked ~ nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	header nav > ul {
		display: block;
		height: auto;
	}

	header nav > ul > li {
		display: block;
		height: auto;
		position: relative;
		border-bottom: 0;
	}

	header nav > ul > li > a {
		display: block;
		height: auto;
		padding: 25px 0 25px 76px;
		font-size: clamp(28px, 5vw, 38px);
		font-weight: 700;
		letter-spacing: 0.01em;
		line-height: 1.15;
		white-space: normal;
	}

	header nav > ul > li:hover > a,
	.lang > ul > li:hover > a {
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 8px;
	}

	header nav ul ul {
		display: block;
		position: static;
		padding: 0 0 20px 76px;
	}

	header nav ul ul::before {
		display: none;
	}

	header nav ul ul a {
		padding: 17px 0;
		font-size: clamp(24px, 4.2vw, 34px);
		font-weight: 400;
		letter-spacing: 0.06em;
		line-height: 1.15;
		white-space: normal;
	}

	header nav > ul > li:has(ul)::before {
		content: "";
		position: absolute;
		top: 35px;
		left: 0;
		width: 0;
		height: 0;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		border-left: 12px solid #111;
		transform: rotate(90deg);
	}

	header nav > ul > li:has(ul) > a::after {
		display: none;
	}

	.titul {
		height: 560px;
	}

	.titul:has(.intro.we-create) {
		overflow: hidden;
	}

	.titul:has(.intro.we-create) img {
		width: 100%;
		object-position: 14% center;
	}

	.titul.imgb:has(.intro.we-create) img {
		object-position: 14% bottom;
	}

	.intro {
		font-size: clamp(40px, 6vw, 56px);
		line-height: 1.08;
	}

	.intro.we-create {
		left: 28px;
		width: calc(100% - 56px);
		font-size: clamp(36px, 6vw, 54px);
	}

	.intro .smaller {
		font-size: clamp(22px, 3vw, 30px);
	}

	main .content {
		padding-top: 36px;
	}

	footer .slogan .text {
		font-size: 22px;
	}

	footer .partner-strip {
		justify-content: center;
		column-gap: 48px;
		row-gap: 26px;
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.partner-strip .partner,
	.partner-strip .partner:first-child,
	.partner-strip .partner:last-child {
		text-align: center;
	}

	footer .footer-main .inner {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px;
		align-items: start;
	}

	footer .footer-main .logo,
	footer .footer-cta {
		grid-column: span 3;
	}

	footer .bottom-line .inner {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 14px;
	}

	.inner,
	.inner.small,
	main .content section {
		padding-left: 18px;
		padding-right: 18px;
	}

	header,
	header .inner {
		height: 112px;
	}

	main {
		padding-top: 112px;
	}

	header .inner {
		padding-left: 26px;
		padding-right: 26px;
	}

	header .logo .logo-mobile {
		width: 175px;
		max-width: 58vw;
	}

	.nav-toggle-label {
		width: 50px;
		height: 50px;
	}

	.nav-toggle-label span {
		width: 34px;
	}

	header nav {
		height: calc(100vh - 112px);
		max-height: calc(100vh - 112px);
		padding: 36px 26px 52px;
	}

	header nav > ul > li > a {
		padding: 20px 0 20px 42px;
		font-size: 27px;
	}

	header nav > ul > li:has(ul)::before {
		top: 30px;
		border-top-width: 7px;
		border-bottom-width: 7px;
		border-left-width: 11px;
	}

	header nav ul ul {
		padding-left: 42px;
	}

	header nav ul ul {
		padding-bottom: 18px;
	}

	header nav ul ul a {
		padding: 12px 0;
		font-size: 23px;
		letter-spacing: 0.04em;
	}

	.titul {
		height: 72vh;
		min-height: 420px;
	}

	.titul:has(.intro.we-create) {
		overflow: hidden;
	}

	.titul:has(.intro.we-create) img {
		width: 100%;
		object-position: 14% center;
	}

	.titul.imgb:has(.intro.we-create) img {
		object-position: 14% bottom;
	}

	.intro {
		padding-left: 18px;
		padding-right: 18px;
		font-size: clamp(30px, 10vw, 44px);
		line-height: 1.05;
	}

	.intro.we-create {
		left: 18px;
		width: min(74%, 330px);
		font-size: clamp(30px, 9vw, 42px);
		text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
	}

	.intro .smaller {
		font-size: 20px;
		padding-top: 14px;
	}

	main .content {
		padding-top: 24px;
	}

	main .content section {
		padding-left: 0;
		padding-right: 0;
	}

	.spacer {
		height: 30px;
	}

	h1 {
		font-size: 36px;
	}

	footer .slogan {
		display: none;
	}

	footer {
		display: flex;
		flex-direction: column;
	}

	footer .partner-strip {
		order: 1;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		align-items: center;
		column-gap: 22px;
		row-gap: 18px;
		margin-top: 0;
		margin-bottom: 34px;
		padding-top: 28px;
		padding-bottom: 28px;
		border-top: 0;
	}

	footer .partner-title {
		grid-column: 1 / -1;
		width: 100%;
		padding-bottom: 18px;
		border-bottom: 1px solid #b9b0a8;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.2;
		text-align: left;
	}

	.partner {
		width: auto;
		padding: 0;
	}

	footer .partner-logo:nth-child(2) {
		order: 5;
	}

	footer .partner-logo:nth-child(3) {
		order: 2;
	}

	footer .partner-logo:nth-child(4) {
		order: 3;
	}

	footer .partner-logo:nth-child(5) {
		order: 4;
	}

	footer .partner-logo:nth-child(6) {
		order: 6;
	}

	footer .partner-logo:nth-child(7) {
		order: 7;
	}

	footer .partner-logo:nth-child(8) {
		order: 8;
	}

	footer .partner-logo img {
		max-width: 100% !important;
		height: auto;
		max-height: 32px;
		margin: 0 auto;
	}

	footer .footer-main {
		order: 2;
		padding-bottom: 40px;
	}

	footer .footer-main .inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 34px;
		row-gap: 28px;
	}

	footer .footer-main .logo,
	footer .footer-cta {
		grid-column: 1 / -1;
		text-align: center;
	}

	footer .footer-main .logo img {
		height: 112px;
		margin: 0 auto;
	}

	footer .footer-cta {
		margin-top: -14px;
		margin-bottom: 22px;
	}

	footer .cta-title,
	.contact-info .cta-title {
		font-size: 24px;
		line-height: 1.3;
	}

	footer .footer-column ul li a,
	footer .footer-column .title {
		font-size: 15px;
		line-height: 1.3;
	}

	footer .footer-column ul ul li a,
	footer .footer-column.social a,
	footer .footer-column.contact a {
		font-size: 15px;
		line-height: 1.35;
	}

	footer .bottom-line {
		display: none;
	}

	.back-to-top {
		right: 0;
		bottom: 56px;
		width: 68px;
		height: 68px;
	}

	.contact-info {
		padding-bottom: 60px;
	}

	.contact-info .contacts {
		padding-top: 30px;
	}
}
