/*
Theme Name: Restaurant Opatija
Theme URI:
Author: Restaurant Opatija
Author URI:
Description: Modernes und elegantes WordPress-Theme für das Restaurant Opatija in Frankfurt am Main.
Version: 1.0.0
Text Domain: restaurant-opatija
*/

/* =========================================================
   VARIABLES
========================================================= */

:root {
	--color-primary: #173b38;
	--color-primary-dark: #102d2b;
	--color-secondary: #8c2525;

	--color-gold: #c5a15b;
	--color-gold-light: #d8bd7d;

	--color-cream: #f5f0e8;
	--color-white: #ffffff;
	--color-black: #111111;

	--color-text: #292929;
	--color-text-light: #6d6d6d;

	--color-border: #ddd6ca;

	--font-heading:
		Georgia,
		'Times New Roman',
		serif;

	--font-body:
		Arial,
		Helvetica,
		sans-serif;

	--container-width: 1200px;

	--transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;

	background: var(--color-cream);
	color: var(--color-text);

	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;

	-webkit-font-smoothing: antialiased;
}

img {
	display: block;

	max-width: 100%;
	height: auto;
}

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

	transition: var(--transition);
}

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

button {
	cursor: pointer;
}

address {
	font-style: normal;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

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

.screen-reader-text:focus,
.skip-link:focus {
	position: fixed;

	top: 15px;
	left: 15px;

	z-index: 99999;

	width: auto;
	height: auto;

	padding: 12px 18px;
	margin: 0;

	background: var(--color-primary);
	color: var(--color-white);

	clip: auto;

	font-size: 14px;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
	width: min(
		calc(100% - 40px),
		var(--container-width)
	);

	margin-right: auto;
	margin-left: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;

	font-family: var(--font-heading);
	font-weight: 500;
	line-height: 1.15;

	color: var(--color-primary);
}

h1 {
	font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
	font-size: 1.7rem;
}

p {
	margin-top: 0;
}

strong {
	font-weight: 700;
}


/* =========================================================
   GLOBAL
========================================================= */

.site-main {
	overflow: hidden;
}

.site-content-wrapper {
	padding: 100px 0;
}

.section {
	padding: 110px 0;
}

.section-light {
	background: var(--color-cream);
}

.section-dark {
	background: var(--color-primary);
	color: var(--color-white);
}

.text-center {
	text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.section-eyebrow,
.hero-eyebrow {
	display: block;

	margin-bottom: 15px;

	color: var(--color-gold);

	font-size: 0.7rem;
	font-weight: 700;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}


/* =========================================================
   HEADING LINE
========================================================= */

.heading-line {
	width: 60px;
	height: 2px;

	margin: 25px 0;

	background: var(--color-gold);
}

.heading-line-light {
	margin-right: auto;
	margin-left: auto;

	background: var(--color-gold-light);
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;

	padding: 0 28px;

	border: 1px solid transparent;

	font-size: 0.72rem;
	font-weight: 700;

	letter-spacing: 0.12em;
	text-transform: uppercase;

	transition: var(--transition);
}

.button-primary {
	background: var(--color-gold);
	color: var(--color-primary);

	border-color: var(--color-gold);
}

.button-primary:hover {
	background: var(--color-gold-light);

	color: var(--color-primary);

	border-color: var(--color-gold-light);
}

.button-outline {
	background: transparent;

	color: var(--color-white);

	border-color: rgba(255, 255, 255, 0.7);
}

.button-outline:hover {
	background: var(--color-white);

	color: var(--color-primary);

	border-color: var(--color-white);
}

.button-light {
	background: var(--color-white);
	color: var(--color-primary);

	border-color: var(--color-white);
}

.button-light:hover {
	background: var(--color-gold);

	color: var(--color-primary);

	border-color: var(--color-gold);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
	position: relative;
	z-index: 1000;

	background: var(--color-white);

	transition:
		box-shadow 0.3s ease,
		background-color 0.3s ease;
}

.site-header.scrolled {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;

	width: min(
		calc(100% - 40px),
		var(--container-width)
	);

	min-height: 100px;

	margin: 0 auto;
}


/* =========================================================
   BRANDING
========================================================= */

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

.site-title {
	display: inline-flex;
	flex-direction: column;

	color: var(--color-primary);
}

.site-title-main {
	font-family: var(--font-heading);
	font-size: 1.7rem;
	font-weight: 600;
	line-height: 1;
}

.site-title-subtitle {
	margin-top: 5px;

	color: var(--color-gold);

	font-size: 0.55rem;
	font-weight: 700;

	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.custom-logo {
	width: auto;
	max-width: 180px;
	max-height: 80px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

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

.primary-menu {
	display: flex;
	align-items: center;

	gap: 30px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.primary-menu a {
	display: block;

	color: var(--color-primary);

	font-size: 0.7rem;
	font-weight: 700;

	letter-spacing: 0.1em;
	text-transform: uppercase;
}

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


/* =========================================================
   HEADER CONTACT
========================================================= */

.header-contact {
	margin-left: 35px;
}

.header-phone {
	display: flex;
	align-items: center;

	gap: 10px;

	color: var(--color-primary);
}

.header-phone:hover {
	color: var(--color-gold);
}

.phone-icon {
	color: var(--color-gold);

	font-size: 1.1rem;
}

.phone-content {
	display: flex;
	flex-direction: column;
}

.phone-label {
	color: var(--color-text-light);

	font-size: 0.55rem;
	font-weight: 700;

	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.phone-number {
	font-size: 0.8rem;
	font-weight: 700;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
	display: none;
	align-items: center;

	gap: 10px;

	margin-left: auto;
	padding: 8px 0;

	background: transparent;
	color: var(--color-primary);

	border: 0;
}

.menu-toggle-label {
	font-size: 0.65rem;
	font-weight: 700;

	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.menu-toggle-icon {
	display: flex;
	flex-direction: column;

	gap: 5px;
}

.menu-toggle-icon span {
	display: block;

	width: 25px;
	height: 2px;

	background: currentColor;

	transition: var(--transition);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation-wrapper {
	display: none;

	background: var(--color-primary);
}

.mobile-navigation {
	padding: 25px 20px 35px;
}

.mobile-menu {
	display: flex;
	flex-direction: column;

	margin: 0;
	padding: 0;

	list-style: none;
}

.mobile-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
	display: block;

	padding: 15px 0;

	color: var(--color-white);

	font-size: 0.8rem;
	font-weight: 700;

	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mobile-menu a:hover {
	color: var(--color-gold);
}

.mobile-navigation-contact {
	margin-top: 25px;
}

.mobile-phone-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	min-height: 50px;

	background: var(--color-gold);
	color: var(--color-primary);

	font-weight: 700;
}

.mobile-navigation-wrapper.is-open {
	display: block;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
	position: relative;

	min-height: calc(100vh - 100px);

	display: flex;
	align-items: center;

	padding: 100px 40px;

	background:
		linear-gradient(
			90deg,
			rgba(13, 27, 26, 0.97),
			rgba(13, 27, 26, 0.88)
		);

	background-position: center;
	background-size: cover;

	color: var(--color-white);
}

.hero-content {
	position: relative;
	z-index: 2;

	width: min(100%, 1000px);

	margin: 0 auto;
}

.hero-title {
	max-width: 900px;

	margin-bottom: 25px;

	color: var(--color-white);

	font-size: clamp(3.5rem, 9vw, 7rem);
}

.hero-subtitle {
	max-width: 650px;

	margin-bottom: 35px;

	color: rgba(255, 255, 255, 0.85);

	font-size: 1.1rem;
}

.hero-buttons {
	display: flex;
	align-items: center;

	gap: 15px;

	flex-wrap: wrap;
}

.hero-scroll-indicator {
	position: absolute;
	z-index: 2;

	right: 40px;
	bottom: 35px;

	display: flex;
	flex-direction: column;
	align-items: center;

	gap: 8px;

	color: rgba(255, 255, 255, 0.7);

	font-size: 0.6rem;
	font-weight: 700;

	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.scroll-arrow {
	color: var(--color-gold);

	font-size: 1.2rem;
}


/* =========================================================
   WELCOME / RESTAURANT
========================================================= */

.welcome-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

	align-items: center;

	gap: 80px;
}

.welcome-content {
	max-width: 600px;
}

.welcome-content h2 {
	margin-bottom: 25px;
}

.welcome-content p {
	color: var(--color-text-light);
}

.welcome-image {
	position: relative;

	overflow: hidden;

	background: var(--color-primary);
}

.welcome-image img {
	display: block;

	width: 100%;
	height: auto;

	aspect-ratio: 16 / 9;

	object-fit: cover;
}

.image-caption {
	position: absolute;

	right: 20px;
	bottom: 20px;

	padding: 12px 16px;

	background: rgba(23, 59, 56, 0.92);
	color: var(--color-white);

	font-family: var(--font-heading);
	font-size: 1rem;
}

.image-caption span {
	display: block;
}


/* =========================================================
   INTRO
========================================================= */

.intro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;

	align-items: center;

	gap: 80px;
}

.intro-text {
	max-width: 600px;
}

.intro-lead {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	line-height: 1.5;

	color: var(--color-primary);
}

.intro-image {
	position: relative;
}

.restaurant-image {
	width: 100%;

	aspect-ratio: 4 / 5;

	object-fit: cover;
}

.image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;

	aspect-ratio: 4 / 5;

	background: var(--color-primary);
	color: var(--color-gold);

	font-family: var(--font-heading);
	font-size: 2rem;
	text-align: center;
}


/* =========================================================
   TEXT LINK
========================================================= */

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

	gap: 8px;

	margin-top: 20px;

	color: var(--color-primary);

	font-size: 0.7rem;
	font-weight: 700;

	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.text-link span {
	color: var(--color-gold);

	font-size: 1rem;

	transition: transform 0.3s ease;
}

.text-link:hover {
	color: var(--color-gold);
}

.text-link:hover span {
	transform: translateX(5px);
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.section-dark h2,
.section-dark h3 {
	color: var(--color-white);
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

	gap: 1px;

	margin-top: 60px;

	background: rgba(255, 255, 255, 0.15);
}

.highlight-card {
	padding: 50px 40px;

	background: var(--color-primary);

	text-align: center;
}

.highlight-icon {
	margin-bottom: 20px;

	color: var(--color-gold);

	font-size: 2rem;
}

.highlight-card p {
	margin-bottom: 0;

	color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   MENU CTA
========================================================= */

.menu-cta {
	position: relative;

	min-height: 500px;

	display: flex;
	align-items: center;

	padding: 80px;

	background:
		linear-gradient(
			90deg,
			rgba(23, 59, 56, 0.98),
			rgba(23, 59, 56, 0.92)
		);

	background-position: center;
	background-size: cover;
}

.menu-cta-content {
	position: relative;
	z-index: 2;

	max-width: 650px;

	color: var(--color-white);
}

.menu-cta h2 {
	color: var(--color-white);
}

.menu-cta p {
	max-width: 550px;

	margin-bottom: 30px;

	color: rgba(255, 255, 255, 0.8);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

	gap: 25px;

	margin-top: 60px;
}

.contact-card {
	padding: 45px 30px;

	background: var(--color-white);

	border: 1px solid var(--color-border);

	text-align: center;
}

.contact-card-icon {
	margin-bottom: 15px;

	color: var(--color-gold);

	font-size: 2rem;
}

.contact-card h3 {
	margin-bottom: 15px;

	font-size: 1.4rem;
}

.contact-card address {
	color: var(--color-text-light);
}

.contact-phone {
	color: var(--color-primary);

	font-weight: 700;
}

.contact-phone:hover {
	color: var(--color-gold);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {
	position: relative;

	padding: 120px 0;

	background:
		linear-gradient(
			rgba(23, 59, 56, 0.94),
			rgba(23, 59, 56, 0.94)
		);

	background-position: center;
	background-size: cover;

	text-align: center;
}

.final-cta-content {
	position: relative;
	z-index: 2;
}

.final-cta-content h2 {
	margin-bottom: 35px;

	color: var(--color-white);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
	background: var(--color-primary);

	color: rgba(255, 255, 255, 0.7);
}

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

.footer-container {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	align-items: start;

	gap: 70px;

	width: min(
		calc(100% - 40px),
		var(--container-width)
	);

	margin: 0 auto;
}

.footer-column {
	min-width: 0;
}

.footer-brand {
	width: 100%;
}

.footer-logo {
	display: inline-flex;
	flex-direction: column;

	color: var(--color-white);
}

.footer-logo-main {
	font-family: var(--font-heading);
	font-size: 2rem;
	line-height: 1;
}

.footer-logo-subtitle {
	margin-top: 6px;

	color: var(--color-gold);

	font-size: 0.55rem;
	font-weight: 700;

	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.footer-description {
	max-width: 350px;

	margin-top: 25px;

	font-size: 0.9rem;
}

.footer-title {
	margin-top: 0;
	margin-bottom: 25px;

	color: var(--color-white);

	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;

	letter-spacing: 0.12em;
	text-transform: uppercase;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
	display: flex;
	flex-direction: column;

	gap: 18px;

	margin: 0;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;

	gap: 12px;
}

.footer-contact-icon {
	flex: 0 0 auto;

	width: 18px;

	color: var(--color-gold);

	text-align: center;
}

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


/* =========================================================
   FOOTER NAVIGATION
========================================================= */

.footer-menu {
	margin: 0;
	padding: 0;

	list-style: none;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu a {
	font-size: 0.85rem;
}

.footer-menu a:hover {
	color: var(--color-gold);
}


/* =========================================================
   FOOTER TEXT
========================================================= */

.footer-column > p {
	font-size: 0.85rem;
}

.footer-column > p a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-column > p a:hover {
	color: var(--color-gold);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
	padding: 20px 0;

	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;

	width: min(
		calc(100% - 40px),
		var(--container-width)
	);

	margin: 0 auto;
}

.footer-copyright {
	font-size: 0.7rem;
}

.footer-legal {
	margin-left: auto;
}

.footer-legal-menu {
	display: flex;
	align-items: center;

	gap: 20px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.footer-legal-menu a {
	font-size: 0.7rem;
}

.footer-legal-menu a:hover {
	color: var(--color-gold);
}


/* =========================================================
   PAGE
========================================================= */

.page-header,
.archive-header {
	padding: 100px 0 70px;

	text-align: center;
}

.page-title,
.archive-title {
	margin-bottom: 20px;
}

.page-content {
	max-width: 850px;

	margin: 0 auto;

	padding-bottom: 100px;
}

.page-content p {
	margin-bottom: 25px;
}

.page-content img {
	margin: 35px auto;
}

.page-content h2 {
	margin-top: 55px;

	font-size: 2.5rem;
}

.page-content h3 {
	margin-top: 40px;
}


/* =========================================================
   POSTS
========================================================= */

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

	gap: 30px;

	padding-bottom: 80px;
}

.post-card {
	overflow: hidden;

	background: var(--color-white);

	border: 1px solid var(--color-border);
}

.post-card-image {
	display: block;

	overflow: hidden;
}

.post-thumbnail {
	width: 100%;

	aspect-ratio: 4 / 3;

	object-fit: cover;

	transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail {
	transform: scale(1.04);
}

.post-card-content {
	padding: 30px;
}

.post-card-meta {
	margin-bottom: 10px;

	color: var(--color-text-light);

	font-size: 0.65rem;
	font-weight: 700;

	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-card-title {
	margin-bottom: 15px;

	font-size: 1.8rem;
}

.post-card-title a:hover {
	color: var(--color-gold);
}

.post-card-excerpt {
	color: var(--color-text-light);

	font-size: 0.9rem;
}


/* =========================================================
   SINGLE POST
========================================================= */

.single-post-wrapper {
	padding: 90px 0 110px;

	background: var(--color-cream);
}

.single-post {
	max-width: 1000px;

	margin: 0 auto;
}

.single-post-header {
	max-width: 850px;

	margin: 0 auto 60px;

	text-align: center;
}

.single-post-title {
	margin-bottom: 20px;
}

.single-post-meta {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	margin-top: 20px;

	color: var(--color-text-light);

	font-size: 0.7rem;
	font-weight: 600;

	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-post-featured-image {
	margin-bottom: 60px;

	overflow: hidden;
}

.single-featured-image {
	width: 100%;

	max-height: 650px;

	object-fit: cover;
}

.single-post-content {
	max-width: 850px;

	margin: 0 auto;

	font-size: 1rem;
}

.single-post-content h2 {
	margin-top: 55px;
}

.single-post-content h3 {
	margin-top: 40px;
}

.single-post-content blockquote {
	margin: 40px 0;

	padding: 30px 35px;

	background: var(--color-white);

	border-left: 3px solid var(--color-gold);

	color: var(--color-primary);

	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-style: italic;
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;

	gap: 30px;

	margin-top: 80px;
	padding-top: 30px;

	border-top: 1px solid var(--color-border);
}

.post-navigation-next {
	text-align: right;
}

.post-navigation-link a {
	color: var(--color-primary);

	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 600;
}

.post-navigation-link a:hover {
	color: var(--color-gold);
}


/* =========================================================
   404
========================================================= */

.error-404-section {
	min-height: 650px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 100px 0;

	text-align: center;
}

.error-404-content {
	max-width: 700px;

	margin: 0 auto;
}

.error-404-number {
	display: block;

	margin-bottom: 20px;

	color: var(--color-gold);

	font-family: var(--font-heading);
	font-size: clamp(7rem, 20vw, 13rem);
	line-height: 0.8;
}

.error-404-content p {
	max-width: 550px;

	margin: 0 auto 35px;

	color: var(--color-text-light);
}

.error-404-actions {
	display: flex;
	justify-content: center;

	gap: 15px;

	flex-wrap: wrap;
}


/* =========================================================
   SEARCH
========================================================= */

.search-form {
	display: flex;

	max-width: 650px;

	margin: 30px auto 0;
}

.search-form-label {
	flex: 1;
}

.search-field {
	width: 100%;
	height: 54px;

	padding: 0 18px;

	background: var(--color-white);

	border: 1px solid var(--color-border);

	outline: none;
}

.search-field:focus {
	border-color: var(--color-gold);
}

.search-submit {
	min-width: 120px;

	padding: 0 20px;

	background: var(--color-primary);
	color: var(--color-white);

	border: 1px solid var(--color-primary);

	font-size: 0.7rem;
	font-weight: 700;

	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.search-submit:hover {
	background: var(--color-secondary);

	border-color: var(--color-secondary);
}

.no-results {
	padding: 50px 0 100px;

	text-align: center;
}

.no-results-content {
	max-width: 700px;

	margin: 0 auto;
}


/* =========================================================
   PAGINATION
========================================================= */

.posts-pagination {
	padding-bottom: 80px;

	text-align: center;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 8px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 40px;
	height: 40px;

	padding: 0 10px;

	background: var(--color-white);

	border: 1px solid var(--color-border);

	font-size: 0.75rem;
}

.nav-links a:hover,
.nav-links .current {
	background: var(--color-primary);
	color: var(--color-white);

	border-color: var(--color-primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

	.primary-menu {
		gap: 18px;
	}

	.header-contact {
		margin-left: 20px;
	}

	.phone-label {
		display: none;
	}

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

		gap: 35px;
	}
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

	.header-inner {
		min-height: 80px;
	}

	.main-navigation,
	.header-contact {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}


	/* HERO */

	.hero-section {
		min-height: 700px;
	}

	.hero-title {
		max-width: 750px;
	}


	/* WELCOME */

	.welcome-grid {
		grid-template-columns: 1fr;

		gap: 50px;
	}

	.welcome-content {
		max-width: 700px;
	}

	.welcome-image {
		width: 100%;
		max-width: 700px;

		margin: 0 auto;
	}


	/* INTRO */

	.intro-content {
		grid-template-columns: 1fr;

		gap: 50px;
	}

	.intro-image {
		max-width: 650px;
	}


	/* HIGHLIGHTS */

	.highlights-grid {
		grid-template-columns: 1fr;
	}


	/* CONTACT */

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

		max-width: 600px;

		margin-right: auto;
		margin-left: auto;
	}


	/* POSTS */

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


	/* MENU CTA */

	.menu-cta {
		padding: 60px 40px;
	}
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

	.container {
		width: min(
			calc(100% - 30px),
			var(--container-width)
		);
	}

	.section {
		padding: 75px 0;
	}

	.site-content-wrapper {
		padding: 70px 0;
	}


	/* HEADER */

	.header-inner {
		width: calc(100% - 30px);
	}

	.site-title-main {
		font-size: 1.45rem;
	}

	.custom-logo {
		max-width: 145px;
	}


	/* HERO */

	.hero-section {
		min-height: 650px;

		padding: 80px 20px;
	}

	.hero-title {
		font-size: clamp(3rem, 15vw, 5rem);
	}

	.hero-subtitle {
		font-size: 1rem;
	}

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

		max-width: 300px;
	}

	.hero-buttons .button {
		width: 100%;
	}

	.hero-scroll-indicator {
		display: none;
	}


	/* WELCOME */

	.welcome-grid {
		gap: 40px;
	}

	.welcome-content h2 {
		font-size: 2.5rem;
	}

	.welcome-image img {
		aspect-ratio: 16 / 9;
	}

	.image-caption {
		right: 12px;
		bottom: 12px;

		padding: 10px 13px;
	}

	.image-caption span {
		font-size: 0.9rem;
	}


	/* INTRO */

	.intro-lead {
		font-size: 1.3rem;
	}


	/* MENU CTA */

	.menu-cta {
		min-height: 450px;

		padding: 50px 25px;
	}


	/* POSTS */

	.posts-grid {
		grid-template-columns: 1fr;
	}


	/* FOOTER */

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

	.footer-container {
		grid-template-columns: 1fr;

		gap: 40px;
	}

	.footer-description {
		max-width: 100%;
	}

	.footer-bottom-container {
		flex-direction: column;
		align-items: flex-start;

		gap: 15px;
	}

	.footer-legal {
		margin-left: 0;
	}

	.footer-legal-menu {
		flex-wrap: wrap;

		gap: 10px 20px;
	}


	/* PAGE */

	.page-header,
	.archive-header {
		padding: 70px 0 50px;
	}

	.page-content {
		padding-bottom: 70px;
	}


	/* SEARCH */

	.search-form {
		flex-direction: column;
	}

	.search-field {
		border-right: 1px solid var(--color-border);
	}

	.search-submit {
		width: 100%;
		height: 54px;
	}


	/* SINGLE POST */

	.single-post-wrapper {
		padding: 60px 0 75px;
	}

	.single-post-header {
		margin-bottom: 40px;
	}

	.single-post-meta {
		flex-wrap: wrap;
	}

	.single-post-featured-image {
		margin-bottom: 40px;
	}

	.post-navigation {
		grid-template-columns: 1fr;

		gap: 20px;
	}

	.post-navigation-next {
		text-align: left;
	}


	/* 404 */

	.error-404-section {
		min-height: 550px;

		padding: 70px 0;
	}

	.error-404-actions {
		flex-direction: column;
		align-items: center;
	}

	.error-404-actions .button {
		width: 100%;
		max-width: 280px;
	}
}


/* Google Maps */
.google-map {
	width: 100%;
	margin: 0;
}

.google-map iframe {
	display: block;
	width: 100%;
	max-width: 850px;
	height: 450px;
	border: 0;
	margin: 0 auto;
}