@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-latin-700-normal.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--espresso: #211a15;
	--ink: #17130f;
	--cognac: #a96133;
	--cognac-dark: #87471f;
	--caramel: #c08a5c;
	--ivory: #f4ece1;
	--cream: #faf6ef;
	--sand: #e7dac8;
	--taupe: #8a7a6c;
	--line: rgba(33, 26, 21, 0.16);
	--line-light: rgba(255, 255, 255, 0.18);
	--white: #ffffff;
	--serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans: "Inter", Arial, Helvetica, sans-serif;
	--shadow: 0 24px 60px rgba(46, 29, 16, 0.16);
	--radius: 8px;
}

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

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

body {
	margin: 0;
	color: var(--espresso);
	background: var(--cream);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--cognac-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--cognac);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.08;
	margin: 0 0 0.55em;
	letter-spacing: 0;
}

p {
	margin: 0 0 1em;
}

ul,
ol {
	padding-left: 1.2em;
}

svg {
	display: inline-block;
	vertical-align: middle;
}

.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;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 200;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--ink);
	color: var(--white);
	border-radius: var(--radius);
}

.status-banner {
	position: relative;
	z-index: 300;
	background: #e7efea;
	color: #2f4a38;
	border-bottom: 1px solid rgba(47, 74, 56, 0.2);
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 20px;
}

.container {
	width: min(1160px, calc(100% - 40px));
	margin-inline: auto;
}

.section {
	padding: 72px 0;
}

.section-heading {
	max-width: 680px;
	margin-bottom: 40px;
}

.eyebrow {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--cognac-dark);
}

.eyebrow--light {
	color: var(--caramel);
}

.section-title {
	font-size: clamp(34px, 5.4vw, 52px);
	color: var(--espresso);
}

.section-lead {
	font-size: 17px;
	color: var(--taupe);
	max-width: 640px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:focus-visible {
	outline: 3px solid var(--caramel);
	outline-offset: 3px;
}

.btn-primary {
	background: var(--cognac);
	color: var(--white);
	border-color: var(--cognac);
}

.btn-primary:hover {
	background: var(--cognac-dark);
	color: var(--white);
	transform: translateY(-1px);
}

.btn-secondary {
	background: transparent;
	color: var(--espresso);
	border-color: var(--line);
}

.btn-secondary:hover {
	border-color: var(--espresso);
	color: var(--espresso);
	background: rgba(255, 255, 255, 0.55);
}

.btn-buy {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
	min-height: 52px;
	padding-inline: 30px;
	font-size: 15px;
}

.btn-buy:hover {
	background: var(--espresso);
	color: var(--white);
	transform: translateY(-1px);
}

.btn-outline-light {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border-color: var(--white);
}

.announcement-bar {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	padding: 9px 0;
}

.announcement-bar__inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
}

.announcement-bar__inner::-webkit-scrollbar {
	display: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 246, 239, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(46, 29, 16, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 72px;
}

.site-logo {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	text-decoration: none;
	line-height: 1;
}

.site-logo:hover {
	color: var(--cognac-dark);
}

.custom-logo-link img {
	max-height: 44px;
	width: auto;
}

.site-nav-wrap {
	display: flex;
	align-items: center;
	gap: 22px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav a {
	color: var(--espresso);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	padding: 8px 2px;
	border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav .is-current > a {
	color: var(--cognac-dark);
	border-bottom-color: var(--caramel);
}

.site-header__buy {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 13px;
	white-space: nowrap;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	align-items: center;
}

.menu-toggle__line {
	width: 20px;
	height: 2px;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
	background: var(--ivory);
	overflow: hidden;
}

.hero--carousel {
	position: relative;
	min-height: min(680px, 80vh);
}

.hero-slide {
	display: none;
	position: relative;
	min-height: inherit;
}

.hero-slide.is-active {
	display: block;
}

.hero-slide--banner {
	overflow: hidden;
	background: var(--espresso);
}

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

.hero-slide--contain .hero-slide__image {
	object-fit: contain;
}

.hero--carousel .carousel-btn,
.hero--carousel .carousel-dots {
	z-index: 4;
}

.hero__inner {
	display: grid;
	gap: 24px;
	align-items: center;
	padding: 48px 0 0;
}

.hero__copy {
	padding: 12px 0 32px;
}

.hero__title {
	font-size: clamp(46px, 9vw, 86px);
	line-height: 0.98;
	color: var(--ink);
	margin-bottom: 22px;
}

.hero__lead {
	font-size: 17px;
	line-height: 1.7;
	color: #4d4036;
	max-width: 560px;
}

.hero__price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 22px 0;
}

.hero__price-value {
	font-family: var(--serif);
	font-size: 36px;
	font-weight: 600;
	color: var(--cognac-dark);
}

.hero__price-unit {
	font-size: 13px;
	color: var(--taupe);
}

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

.hero__microcopy {
	font-size: 12px;
	color: var(--taupe);
	margin: 18px 0 0;
	max-width: 440px;
}

.hero__media {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__image {
	width: auto;
	max-width: 100%;
	height: min(720px, 80vh);
	flex: 0 0 auto;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.trust-bar {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.86);
	padding: 16px 0;
}

.trust-bar__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 28px;
}

.trust-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 12.5px;
	font-weight: 500;
}

.trust-bar__icon {
	width: 18px;
	height: 18px;
	color: var(--caramel);
	flex: none;
}

.trust-bar__item--note {
	color: rgba(255, 255, 255, 0.66);
}

.benefits {
	background: var(--cream);
}

.benefits__grid {
	display: grid;
	gap: 18px;
}

.benefit-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 26px;
}

.benefit-card__icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: var(--radius);
	background: var(--ivory);
	color: var(--cognac-dark);
	margin-bottom: 20px;
}

.benefit-card__icon svg {
	width: 26px;
	height: 26px;
}

.benefit-card__title {
	font-size: 25px;
	color: var(--espresso);
}

.benefit-card__text {
	font-size: 14.5px;
	color: var(--taupe);
	margin: 0;
}

.showcase {
	background: var(--ivory);
}

.showcase__grid {
	display: grid;
	gap: 36px;
	align-items: center;
}

.showcase__media img,
.split__media img {
	width: 100%;
	border-radius: var(--radius);
}

.detail-carousel {
	position: relative;
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.detail-carousel--dark {
	background: #241c16;
	border-color: var(--line-light);
}

.detail-carousel--dark .carousel-dot {
	background: rgba(255, 255, 255, 0.55);
}

.detail-carousel--dark .carousel-dot.is-active {
	background: var(--caramel);
}

.detail-carousel__slide {
	display: none;
}

.detail-carousel__slide.is-active {
	display: block;
}

.detail-carousel__slide img {
	width: 100%;
	height: auto;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: rgba(23, 19, 15, 0.55);
	color: var(--white);
	backdrop-filter: blur(4px);
	transition: background-color 0.2s ease;
}

.carousel-btn:hover {
	background: var(--cognac-dark);
}

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

.carousel-btn--prev {
	left: 14px;
}

.carousel-btn--next {
	right: 14px;
}

.carousel-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.carousel-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.is-active {
	background: var(--cognac);
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 0;
	font-size: 15px;
	color: var(--espresso);
}

.check-list svg {
	width: 20px;
	height: 20px;
	flex: none;
	color: var(--cognac);
	margin-top: 2px;
}

.check-list--large li {
	font-size: 16px;
}

.showcase__note {
	font-size: 13px;
	color: var(--taupe);
}

.split {
	background: var(--cream);
}

.split__grid {
	display: grid;
	gap: 36px;
	align-items: center;
}

.split__content {
	padding: 8px 0;
}

.split__text {
	font-size: 15.5px;
	color: #4d4036;
}

.split__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.story {
	background: var(--ink);
}

.story__grid {
	display: grid;
	gap: 36px;
	align-items: center;
}

.story__media img {
	width: 100%;
	border-radius: var(--radius);
}


.section-title--light {
	color: var(--white);
}

.story__text {
	color: rgba(255, 255, 255, 0.72);
	font-size: 16px;
}

.how {
	background: var(--cream);
}

.how__grid {
	display: grid;
	gap: 18px;
	counter-reset: how;
}

.how-step {
	border-top: 1px solid var(--line);
	padding: 26px 4px 10px;
}

.how-step__number {
	font-family: var(--serif);
	font-size: 22px;
	color: var(--caramel);
	display: block;
	margin-bottom: 8px;
}

.how-step__title {
	font-size: 26px;
	color: var(--espresso);
}

.how-step__text {
	font-size: 14.5px;
	color: var(--taupe);
}

.how__note {
	font-size: 13px;
	color: var(--taupe);
	margin-top: 28px;
}

.faq-section {
	background: var(--ivory);
}

.faq-section__inner,
.faq-page__inner {
	max-width: 820px;
	margin-inline: auto;
}

.faq-section__more {
	margin-top: 24px;
}

.faq-list {
	border-top: 1px solid var(--line);
}

.faq-item {
	border-bottom: 1px solid var(--line);
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 4px;
	font-weight: 600;
	font-size: 15.5px;
	cursor: pointer;
	list-style: none;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question:hover {
	color: var(--cognac-dark);
}

.faq-item__icon {
	width: 18px;
	height: 18px;
	flex: none;
	color: var(--cognac);
	transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon {
	transform: rotate(180deg);
}

.faq-item__answer {
	padding: 0 4px 22px;
	color: var(--taupe);
	font-size: 14.5px;
	max-width: 700px;
}

.faq-item__answer p {
	margin: 0;
}

.cta-band {
	background:
		radial-gradient(circle at 85% 20%, rgba(192, 138, 92, 0.22), transparent 34%),
		var(--espresso);
	color: var(--white);
	padding: 88px 0;
}

.cta-band__inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-band__title {
	font-size: clamp(38px, 6.5vw, 64px);
	color: var(--white);
	max-width: 760px;
}

.cta-band__lead {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	margin-bottom: 30px;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 34px;
}

.newsletter-form {
	display: grid;
	gap: 8px;
	max-width: 460px;
	width: 100%;
	margin-inline: auto;
}

.newsletter-form__input {
	width: 100%;
	min-height: 48px;
	padding: 11px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--espresso);
}

.newsletter-form__input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
	outline: 3px solid rgba(192, 138, 92, 0.35);
	outline-offset: 1px;
}

.newsletter-form__button {
	min-height: 44px;
}

.newsletter-form__note {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.58);
	margin: 4px 0 0;
}

.page-hero {
	background: var(--ivory);
	border-bottom: 1px solid var(--line);
	padding: 72px 0;
}

.page-hero__inner {
	max-width: 860px;
}

.page-hero__title {
	font-size: clamp(42px, 7vw, 66px);
	color: var(--ink);
}

.page-hero__intro {
	font-size: 17px;
	color: var(--taupe);
	max-width: 640px;
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.airline-notice {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #f7e8d8;
	border: 1px solid rgba(169, 97, 51, 0.28);
	border-radius: var(--radius);
	padding: 18px;
	margin: 22px 0;
}

.airline-notice__icon {
	width: 24px;
	height: 24px;
	flex: none;
	color: var(--cognac-dark);
	margin-top: 2px;
}

.airline-notice strong {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
}

.airline-notice p {
	margin: 0;
	font-size: 13.5px;
	color: #5b4637;
}

.breadcrumb {
	padding: 22px 0 8px;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: var(--taupe);
}

.breadcrumb a {
	color: var(--taupe);
}

.product-page {
	background: var(--cream);
	padding-bottom: 24px;
}

.product-page__grid {
	display: grid;
	gap: 36px;
	padding: 16px 0 60px;
}

.product-gallery__main {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--ivory);
	overflow: hidden;
}

.product-gallery__main img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 4.4;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 10px;
}

.product-gallery__thumb {
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--radius);
	background: var(--ivory);
	overflow: hidden;
	aspect-ratio: 1;
}

.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.product-gallery__thumb.is-active {
	border-color: var(--cognac);
}

.product-summary__title {
	font-size: clamp(38px, 5.5vw, 52px);
	color: var(--ink);
}

.product-summary__price {
	font-family: var(--serif);
	font-size: 32px;
	font-weight: 600;
	color: var(--cognac-dark);
	margin: 0 0 14px;
}

.product-summary__desc {
	color: #4d4036;
	font-size: 15.5px;
}

.product-variant {
	margin: 20px 0;
}

.product-variant__label {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--espresso);
}

.product-variant__options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.product-variant__option {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--espresso);
	font-size: 13px;
	font-weight: 600;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.product-variant__option:hover,
.product-variant__option.is-active {
	border-color: var(--cognac);
	background: #fbf3ea;
}

.product-variant__swatch {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(23, 19, 15, 0.18);
}

.product-variant__swatch--blackwhite {
	background: linear-gradient(135deg, #242424 50%, #f2f2f2 50%);
}

.product-variant__swatch--orangewhite {
	background: linear-gradient(135deg, #d98745 50%, #f6ead9 50%);
}

.product-variant__swatch--silverwhite {
	background: linear-gradient(135deg, #cfd3d6 50%, #fbfbfb 50%);
}

.product-summary__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 22px 0 4px;
}

.product-summary__points {
	display: grid;
	gap: 6px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.product-summary__points li {
	position: relative;
	padding-left: 20px;
	font-size: 13.5px;
	color: var(--taupe);
}

.product-summary__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--caramel);
}

.spec-section {
	background: var(--ivory);
}

.spec-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
}

.spec-table th,
.spec-table td {
	text-align: left;
	padding: 14px 18px;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}

.spec-table th {
	width: 38%;
	color: var(--taupe);
	font-weight: 500;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
	border-bottom: 0;
}

.spec-section__note {
	font-size: 13px;
	color: var(--taupe);
	margin-top: 18px;
}

.service-grid {
	background: var(--cream);
}

.service-grid__cards {
	display: grid;
	gap: 18px;
}

.service-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
}

.service-card__title {
	font-size: 24px;
	color: var(--espresso);
}

.service-card p {
	font-size: 14px;
	color: var(--taupe);
}

.service-card a {
	font-size: 13.5px;
	font-weight: 600;
}

.faq-page {
	background: var(--cream);
}

.faq-page__category {
	font-size: 28px;
	margin: 44px 0 16px;
	color: var(--espresso);
}

.faq-page__contact {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--ivory);
	padding: 34px;
	margin-top: 48px;
	text-align: center;
}

.contact-page {
	background: var(--cream);
}

.contact-page__grid {
	display: grid;
	gap: 40px;
	align-items: start;
}

.contact-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px 22px;
	margin-bottom: 14px;
}

.contact-card__title {
	font-size: 20px;
	margin-bottom: 4px;
}

.contact-card p {
	margin: 0;
	font-size: 14px;
}

.contact-page__form {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
}

.contact-form__row {
	display: grid;
	gap: 16px;
}

.contact-form__field {
	display: grid;
	gap: 7px;
	margin-bottom: 16px;
}

.contact-form label {
	font-size: 13px;
	font-weight: 600;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--cream);
	color: var(--espresso);
}

.contact-form__note {
	font-size: 12.5px;
	color: var(--taupe);
	margin: 12px 0 0;
}

.policy-page,
.legal-page {
	background: var(--cream);
}

.policy-page__inner,
.legal-page__inner {
	max-width: 820px;
	margin-inline: auto;
}

.policy-block {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	margin-bottom: 22px;
}

.policy-block h3 {
	font-size: 22px;
	margin-top: 22px;
}

.policy-note {
	border: 1px solid rgba(169, 97, 51, 0.32);
	background: #f7e8d8;
	border-radius: var(--radius);
	padding: 24px;
	margin-top: 26px;
}

.policy-note p {
	font-size: 14px;
	color: #5b4637;
}

.legal-page__inner {
	max-width: 760px;
}

.legal-page__inner h2 {
	font-size: 30px;
	margin-top: 38px;
	color: var(--espresso);
}

.legal-page__inner p,
.legal-page__inner li {
	font-size: 15px;
	color: #4d4036;
}

.legal-page__meta {
	font-size: 13px;
	color: var(--taupe);
}

.page-content {
	max-width: 820px;
}

.page-content img {
	border-radius: var(--radius);
}

.post-preview {
	border-bottom: 1px solid var(--line);
	padding: 18px 0;
}

.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.site-footer__grid {
	display: grid;
	gap: 38px;
	padding: 64px 0 48px;
}

.site-logo--footer {
	color: var(--white);
	font-size: 26px;
}

.site-logo--footer:hover {
	color: var(--caramel);
}

.site-footer__brand p {
	font-size: 13.5px;
	max-width: 360px;
}

.site-footer__title {
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 14px;
}

.site-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 9px;
}

.site-footer__links a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.site-footer__links a:hover {
	color: var(--white);
}

.site-footer__bottom {
	border-top: 1px solid var(--line-light);
}

.site-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	font-size: 12.5px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__legal a {
	color: rgba(255, 255, 255, 0.62);
	text-decoration: none;
}

.site-footer__legal a:hover {
	color: var(--white);
}

.site-footer .newsletter-form {
	margin-inline: 0;
}

.site-footer .newsletter-form__input {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--line-light);
	color: var(--white);
}

.site-footer .newsletter-form__input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 640px) {
	.benefits__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.newsletter-form {
		grid-template-columns: 1fr auto;
	}

	.newsletter-form__note {
		grid-column: 1 / -1;
	}

	.contact-form__row {
		grid-template-columns: 1fr 1fr;
	}

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

	.site-footer__bottom-inner {
		flex-direction: row;
	}
}

@media (min-width: 900px) {
	.section {
		padding: 100px 0;
	}

	.hero__inner {
		grid-template-columns: 1.02fr 0.98fr;
		min-height: 640px;
		padding: 56px 0 0;
	}

	.hero__copy {
		padding-bottom: 80px;
	}

	.hero__media {
		align-self: stretch;
	}

	.hero__image {
		width: min(620px, 100%);
	}

	.showcase__grid,
	.split__grid,
	.story__grid {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}

	.split--wide .split__grid {
		grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
		gap: 44px;
	}

	.split--wide.split--reverse .split__grid {
		grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	}

	.split--reverse .split__media {
		order: 2;
	}

	.how__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 34px;
	}

	.product-page__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: 56px;
		align-items: start;
	}

	.product-summary {
		position: sticky;
		top: 104px;
	}

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

	.contact-page__grid {
		grid-template-columns: 0.9fr 1.1fr;
		gap: 56px;
	}

	.site-footer__grid {
		grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
	}
}

@media (max-width: 899px) {
	.menu-toggle {
		display: flex;
	}

	.site-header__buy {
		display: none;
	}

	.site-nav-wrap {
		position: fixed;
		inset: 72px 0 auto;
		background: var(--cream);
		border-bottom: 1px solid var(--line);
		display: grid;
		align-content: start;
		gap: 4px;
		padding: 18px 20px 28px;
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;
		max-height: calc(100vh - 72px);
		overflow-y: auto;
	}

	.site-nav-wrap.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav {
		display: grid;
		gap: 2px;
	}

	.site-nav a {
		display: block;
		padding: 13px 4px;
		font-size: 16px;
		border-bottom: 1px solid var(--line);
	}

	.site-nav-wrap .btn {
		margin-top: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.js-animations .reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-animations .reveal.is-visible {
	opacity: 1;
	transform: none;
}

.sibotion-woo-purchase {
	display: grid;
	gap: 14px;
	margin: 0 0 20px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.sibotion-woo-purchase .variations {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
}

.sibotion-woo-purchase .variations th,
.sibotion-woo-purchase .variations td {
	padding: 8px 0;
	border: 0;
	text-align: left;
	vertical-align: top;
}

.sibotion-woo-purchase select {
	width: 100%;
	min-height: 48px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	color: var(--espresso);
}

.sibotion-woo-purchase .quantity {
	display: none;
}

.sibotion-woo-purchase .single_add_to_cart_button,
.sibotion-woo-purchase .button {
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 6px;
	background: var(--cognac);
	color: #fff;
	font-weight: 700;
}

.sibotion-woo-purchase .woocommerce-variation-price {
	font-weight: 700;
	color: var(--espresso);
}
