/* Reset */
*, *:before, *:after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}
input, button, textarea, select {
  font: inherit;
}
*:focus {
  outline: none;
}

/* Fonts */
@font-face {
  font-family: 'MontserratZ';
  src: url('/assets/fonts/MontserratZ/MontserratZ-SemiBold.woff2') format('woff');
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: 'MontserratZ';
  src: url('/assets/fonts/MontserratZ/MontserratZ-Bold.woff2') format('woff');
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: 'MontserratZ';
  src: url('/assets/fonts/MontserratZ/MontserratZ-ExtraBold.woff2') format('woff');
  font-style: normal;
  font-weight: 800;
}

/* Variables */
:root {
  /* Font Families */
  --font-headings: "MontserratZ", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-text: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Colors */
  --color-primary-light: #dec7a7;
  --color-primary: #c09c6c;
  --color-background-light: #fcfcfc;
  --color-background: #f8f5ee;
  --color-text: #121212;

  /* Typography */
  --font-size-base: 15px;
  --font-weight-normal: 400;
  --font-weight-semibold: 500;
  --font-weight-bold: 600;
  --font-weight-extrabold: 800;

  /* Radius */
  --radius: 1px;

  /* Spacing */
  /* --base-spacing: 8px; */
  --base-spacing: clamp(4px, 2vw, 8px);
  --s-0: calc(var(--base-spacing) * 0.5);  /* up to 4px */
  --s-1: calc(var(--base-spacing) * 1);    /* up to 8px */
  --s-2: calc(var(--base-spacing) * 2);    /* up to 16px */
  --s-3: calc(var(--base-spacing) * 4);    /* up to 32px */
  --s-4: calc(var(--base-spacing) * 8);    /* up to 64px */
  --s-5: calc(var(--base-spacing) * 16);   /* up to 128px */
  
  /* Containers */
  --container: 1280px;
  --container-sm: 1140px;
  --container-text: 80ch;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-duration: 0.4s;
  --transition-ease: ease;
}

/* Containers */
.container,
.container-fluid,
.container-sm,
.container-text {
    padding-inline: var(--s-2);
    margin-inline: auto;
}
.container-fluid {
  max-width: 100%;
}
/* Text Container */
@media (min-width: 75ch) {
  .container-text {
    max-width: var(--container-text);
  }
}
/* Small Container */
@media (min-width: 920px) {
  .container-sm {
    max-width: var(--container-sm);
  }
}
/* Regular Container */
@media (min-width: 1280px) {
  .container {
    max-width: var(--container);
  }
}

/* Global */
html {
  font-size: 100%;
}
body {
  font-family: var(--font-text);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-background);
  color: var(--color-text);
}
body.menu-open {
  overflow: hidden;
}
a {
  color: var(--color-text);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}
a:focus {
  outline: 2px solid var(--color-text); 
  outline-offset: 2px;
}
hr {
  border:0;
  border-bottom: 1px solid var(--color-text);
  margin-block: var(--font-size-base);
}
strong {
  font-weight: var(--font-weight-extrabold);
}
blockquote {
  margin: var(--s-2) 0;
  padding: var(--s-2);
  border-left: 4px solid var(--color-text);
}
details {
  padding-top: var(--s-2);
}
details summary {
  font-size: 1.2em;
  line-height: 1.2;
  cursor: pointer;
  padding-bottom: var(--s-2);
}
p {
  margin-bottom: var(--font-size-base);
}
img + p,
img + h2,
img + h3,
img + h4,
img + h5,
img + h6 {
  padding-top: 1em;
}
p + h2, p + h3, p + h4, p + h5, p + h6,
ul + h2, ul + h3, ul + h4, ul + h5, ul + h6 {
  padding-top: 1em;
}
main ul {
  margin-bottom: var(--font-size-base);
}
li > p {
  margin-bottom: 0;
}
@media screen and (max-width: 75ch) {
  main ul, main ol {
    margin-left: 1em;
  }
}
main {
  padding-block: var(--s-5);
}
@media (max-width: 992px) {
  main {
    padding-block: var(--s-4) var(--s-5);
  }
}
/* Headlines */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  margin-bottom: 0.5em;
  line-height: 1.1;
}

/* Utilities */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--transition-ease);
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.text-center {
  text-align: center;
}

/* Social icons */
.socials {
  display: flex;
  gap: var(--s-2);
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  transition: background-color var(--transition-duration);
}
.socials a:hover {
  background-color: var(--color-primary);
}
.socials img {
  width: 12px;
  height: 12px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 48px;
  background-color: var(--color-primary-light);
  text-decoration: none;
  border: 2px solid var(--color-text);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--color-primary);
  text-decoration: none;
}
@media (max-width: 992px) {
  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* New: Button for navigation */
.btn-primary-nav {
  display: inline-block;
  padding: 8px 20px; /* Smaller padding for header */
  background-color: transparent; /* Transparent background */
  text-decoration: none;
  border: 1px solid var(--color-background); /* Border color for transparent header */
  color: var(--color-background); /* Text color for transparent header */
  font-weight: var(--font-weight-bold); /* Use bold font weight */
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-radius: var(--radius); /* Add radius */
  font-size: 0.9em; /* Match nav link font size */
}
.btn-primary-nav:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text); /* Change text color on hover */
  text-decoration: none;
}


/* Font sizes */
h1, .h1 { font-size: clamp(3.052em, 5vw, 3.815em); }
h2, .h2 { font-size: clamp(2.441em, 4vw, 3.052em); }
h3, .h3 { font-size: clamp(1.953em, 3vw, 2.441em); }
h4, .h4 { font-size: clamp(1.754em, 2vw, 1.953em); }
h5, .h5 { font-size: 1.563em; }
h6, .h6 { font-size: 1.25em; }
p { font-size: 1em; }
small { font-size: 0.8em; }
.tiny { font-size: 0.64em; }

/* Rounded corners*/
pre, code, input, select, textarea {
  border-radius: var(--radius)
}

/* --- Header --- */
header.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--s-2) 0;
  background-color: transparent; 
  transition: background-color var(--transition-duration) ease-in-out;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-logo a {
  font-family: var(--font-headings);
  font-weight: var(--font-weight-bold);
  font-size: 1.8em;
  letter-spacing: 2px;
  color: var(--color-primary);
  text-transform: uppercase;
  text-decoration: none;
}
header .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
header .main-nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
}
header .main-nav li {
  position: relative;
  padding-inline: var(--s-2); 
}
header .main-nav li:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--color-background);
}
header .main-nav li a {
  color: var(--color-background);
  font-family: var(--font-headings);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: 0.9em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
header .main-nav li a:hover {
  color: var(--color-primary-light);
}
header .main-nav .nav-socials {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding-inline: var(--s-2);
  position: relative;
}
header .main-nav .nav-socials::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--color-background);
}
header .main-nav .nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-background); 
  border-radius: 50%;
  transition: background-color var(--transition-duration), border-color var(--transition-duration);
}
header .main-nav .nav-socials a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
header .main-nav .nav-socials img {
  width: 10px;
  height: 10px;
}
header .main-nav .btn-primary-nav {
  margin-left: auto;
}
header .main-nav .nav-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding-inline: var(--s-2);
  position: relative;
  font-family: var(--font-headings);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9em;
  text-transform: uppercase;
}
header .main-nav .nav-lang-switch::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--color-background);
}
header .main-nav .nav-lang-switch .seperator {
  display: none;
}
header .main-nav .nav-lang-switch a {
  color: var(--color-background);
  text-decoration: none;
  transition: color 0.2s ease;
}
header .main-nav .nav-lang-switch a:hover {
  color: var(--color-primary-light);
}
header .main-nav .nav-lang-switch .active {
  color: var(--color-primary);
}
header .mobile-lang-switch {
  display: none;
}
header .menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  header .main-nav,
  header .btn-primary-nav {
    display: none;
  }
  header .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--s-1);
    z-index: 1001;
    position: relative;
  }
  header .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: var(--color-background);
    transition: all 0.3s ease;
  }
  header .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  header .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  header .mobile-lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-left: auto;
    font-family: var(--font-headings);
    font-weight: var(--font-weight-semibold);
    font-size: 0.85em;
    text-transform: uppercase;
    padding-right: var(--s-2);
  }
  header .mobile-lang-switch .seperator {
    display: none;
  }
  header .mobile-lang-switch a {
    color: var(--color-background);
    text-decoration: none;
  }
  header .mobile-lang-switch .active {
    color: var(--color-primary);
  }
}
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu-backdrop.visible {
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background-color: var(--color-text);
  color: var(--color-background);
  transform: translateX(100%);
  z-index: 1000;
  padding-top: var(--s-4);
  overflow-y: auto;
}
.mobile-menu ul {
  list-style: none;
  padding: var(--s-3);
  margin: 0;
  text-align: center;
}
.mobile-menu ul li {
  margin: var(--s-2) 0;
}
.mobile-menu ul li a {
  color: var(--color-background);
  font-family: var(--font-headings);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 1.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  display: block;
}
.mobile-menu ul li a:hover {
  color: var(--color-primary);
}
.mobile-menu .mobile-menu-btn {
  display: block;
  width: calc(100% - (var(--s-3) * 2));
  margin: 0 var(--s-3);
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-text);
  border-color: var(--color-primary);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.mobile-menu .mobile-menu-btn:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}
.mobile-menu .contact-info {
  padding: var(--s-3);
}
.mobile-menu .contact-info p {
  margin-bottom: 0;
}
.mobile-menu .contact-info a {
  font-size: 1.1em;
  font-family: var(--font-headings);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  color: var(--color-primary);
}
.mobile-menu .socials {
  display: flex;
  gap: var(--s-2);
  padding: var(--s-3);
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}
@media (min-width: 920px) {
  .mobile-menu {
    display: none;
  }
}

/* --- Splash Screen --- */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999; 
}
.splash-screen .splash-logo {
  width: 200px;
  margin-bottom: var(--s-4);
}
.splash-screen .loader {
  width: 200px;
  height: 3px;
  background-color: var(--color-background);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.splash-screen .filling-line {
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background-color: var(--color-primary);
  animation: fillLine 1.5s forwards;
}
@keyframes fillLine {
  to {
    left: 0;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover; 
}
.hero.full-screen-hero {
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
}
.hero.standard-hero {
  height: 45vh;
  min-height: 250px;
  align-items: end;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero.standard-hero .hero-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-background);
  max-width: 1000px;
}
.hero .hero-title {
  font-weight: var(--font-weight-extrabold);
  color: var(--color-background);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.full-screen-hero .hero-title {
  font-size: clamp(2em, 5vw, 5em);
}
.hero .hero-subtitle {
  font-weight: var(--font-weight-normal);
  margin-inline: auto;
  font-size: 1.2em;
  margin-top: 10px;
}
.standard-hero .hero-subtitle {
  font-size: 1em;
  padding-bottom: var(--s-1);
  max-width: 72ch;
}
/* Add this to your main.css file, for example, near the .hero styles */

.hero-mute-button {
  position: absolute;
  bottom: var(--s-3); /* Position from the bottom */
  right: var(--s-3); /* Position from the right */
  z-index: 3; /* Ensure it's above the overlay and content */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Light border */
  border-radius: 50%; /* Make it circular */
  width: 40px; /* Fixed width */
  height: 40px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: var(--color-background); /* SVG fill color (white/light) */
  /* Remove default button styles */
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.hero-mute-button:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Darker background on hover */
  border-color: var(--color-background); /* Solid border on hover */
}

.hero-mute-button svg {
  width: 20px; /* Size of the SVG icon */
  height: 20px;
  display: block; /* Ensure SVG takes up space */
}

/* Initial state: video is muted, so show the 'speaker-off' icon */
.hero-mute-button .speaker-off {
  display: block;
}
.hero-mute-button .speaker-on {
  display: none;
}

/* When the button has the 'unmuted' class (meaning video sound is ON) */
.hero-mute-button.unmuted .speaker-off {
  display: none; /* Hide the 'speaker-off' icon */
}
.hero-mute-button.unmuted .speaker-on {
  display: block; /* Show the 'speaker-on' icon */
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .hero-mute-button {
    bottom: var(--s-2);
    right: var(--s-2);
    width: 36px;
    height: 36px;
  }
  .hero-mute-button svg {
    width: 18px;
    height: 18px;
  }
}

/* --- Feature Boxes --- */
.feature-section {
  position: relative;
  z-index: 10;
  font-weight: var(--font-weight-normal);
}
.feature-boxes {
  display: flex;
  justify-content: space-between;
  /* margin-top: -100px; */
  margin-bottom: 50px;
}
.feature-box {
  flex: 1;
  padding: var(--s-3);
  box-shadow: var(--shadow-lg);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-box-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--s-3)
}
.feature-box-header img {
  margin-right: 10px;
}
.feature-box-header h3 {
  margin: 0;
  padding-top: 0;
  font-weight: var(--font-weight-bold);
}
.feature-box a {
  text-transform: uppercase;
  margin-bottom: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
.feature-box a + a{
  margin-bottom: 0;
}
.box-black-light {
  background-color: var(--color-text);
  color: var(--color-background);
}
.box-black-light a {
  color: var(--color-primary);
}
.box-gold-dark {
  background-color: var(--color-primary);
  color: var(--color-text);
}
.box-gold-dark svg {
  fill: var(--color-text);
}
.box-light-dark {
  background-color: var(--color-background-light);
  color: var(--color-text);
}
.box-light-dark svg {
  fill: var(--color-text);
}
@media (max-width: 992px) {
  .feature-section > .container-sm {
    padding-inline: 0;
  }
  .feature-boxes {
    flex-direction: column;
    margin-top: 0;
  }
  .feature-box {
    min-height: auto;
    padding-block: var(--s-4);
  }
}

/* --- Home About Section Styling --- */
.home-about .about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
.home-about .about-image {
  flex: 1;
  max-width: 50%;
}
.home-about .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.home-about .about-text-content {
  flex: 1;
  max-width: 50%;
}
.home-about .about-text-content h2 {
  margin-bottom: 50px;
}
.home-about .about-text-content a {
  margin-top: 50px;
}
.home-about .about-text-content p,
.home-about .about-text-content a {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .home-about .about-content-wrapper {
    gap: 60px;
  }
  .home-about .about-text-content h2 {
    margin-bottom: 30px;
  }
  .home-about .about-text-content a {
    margin-top: 30px;
  }
  .home-about .about-text-content p,
  .home-about .about-text-content a {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .home-about .about-content-wrapper {
    flex-direction: column;
  }
  .home-about .about-image,
  .home-about .about-text-content {
    max-width: 100%;
    text-align: center;
  }
  .home-about .about-text-content h2 {
    margin-top: 20px;
  }
}

/* --- Home Gallery --- */
.home-gallery {
  margin-block: var(--s-5);
  padding-block: var(--s-5);
  background-color: var(--color-text);
  color: var(--color-background);
  text-align: center;
}
.home-gallery h2 {
  text-transform: uppercase;
  max-width: 20ch;
  text-align: left;
}
.home-gallery p {
  max-width: 60ch;
  text-align: left;
}
.home-gallery .gallery-grid {
  column-count: 3;
  column-gap: var(--s-3);
  margin-block: var(--s-4);
}
.home-gallery .gallery-item {
  margin-bottom: var(--s-3);
  overflow: hidden;
  break-inside: avoid;
}
.gallery-placeholder,
.video-in-gallery {
  width: 100%;
  background-color: #000;
  color: #fff;
  border-radius: var(--radius);
  position: relative; 
  overflow: hidden;
}
/* 500x650 (Portrait) -> 650/500 = 130% height relative to width */
.portrait-placeholder {
  padding-top: 130%; 
}
/* 600x450 (Landscape) -> 450/600 = 75% height relative to width */
.landscape-placeholder {
  padding-top: 75%; 
}
.gallery-placeholder-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: var(--s-1);
  box-sizing: border-box;
  opacity: 0.25;
}

.video-in-gallery video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.home-gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.home-gallery .gallery-grid .gallery-item:first-child,
.home-gallery .gallery-grid .gallery-item:last-child {
  padding-top: 60px;
}
.home-gallery .btn {
  border-color: var(--color-primary);
}
@media (max-width: 992px) {
  .home-gallery .gallery-grid {
    column-count: 2;
  }
  .home-gallery .gallery-grid .gallery-item:first-child,
  .home-gallery .gallery-grid .gallery-item:last-child {
    padding-top: 0px;
  }
}
@media (max-width: 768px) {
  .home-gallery h2 {
    text-align: center;
    max-width: 100%;
  }
  .home-gallery p {
    text-align: center;
    max-width: 100%;
  }
  .home-gallery .gallery-grid {
    column-gap: var(--s-1);
    margin: var(--s-3) auto;
  }
  .home-gallery .gallery-item {
    margin-bottom: var(--s-1);
  }
}

/* --- Home Hours --- */
.home-hours {
  padding-top: var(--s-5);
  text-align: center;
  background-color: var(--color-background);
  color: var(--color-text);
}
.home-hours h2 {
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  font-size: 2.5em;
}
.home-hours p {
  max-width: 60ch;
  margin: 0 auto;
}
.hours-list-wrapper {
  padding-block: var(--s-4);
  margin: 0 auto;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.hours-list li {
  padding: var(--s-0) var(--s-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  border-right: 2px solid var(--color-text);
}
.hours-list li:last-child {
  border-right: none;
}
.hours-list .day {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.hours-list .time {
  font-weight: 400;
  opacity: 0.5;
  text-align: center;
  padding-top: var(--s-0);
}
.hours-contact .call-action {
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hours-contact .call-action:hover {
  color: var(--color-primary);
}
.hours-contact .or-separator {
  margin: var(--s-2) 0;
  font-style: italic;
  opacity: 0.5;
  max-width: 100%;
}
@media (max-width: 768px) {
  .hours-list {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .hours-list li {
    border-right: none;
    border-bottom: 3px solid var(--color-text);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hours-list li:last-child {
    border-bottom: none;
  }
  .hours-list .day,
  .hours-list .time {
    text-align: left;
  }
}

/* --- Footer Styling --- */
footer.main-footer {
  background-color: var(--color-text);
  color: var(--color-background);
  padding-top: var(--s-4);
  font-size: 0.9em;
}
footer.main-footer a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.main-footer a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
footer .footer-center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--s-4);
}
footer .footer-logo {
  margin-bottom: var(--s-3);
}
footer .footer-logo a {
  font-family: var(--font-headings);
  font-weight: var(--font-weight-bold);
  font-size: 2em;
  letter-spacing: 3px;
  color: var(--color-primary);
  text-transform: uppercase;
}
footer .footer-tagline {
  font-family: var(--font-headings);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  margin-bottom: 0;
}
footer address {
  font-style: normal;
  margin-bottom: var(--s-3);
}
footer .footer-contact {
  font-family: var(--font-headings);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  margin-block: var(--s-3);
}
footer .footer-lang-switch {
  margin-top: var(--s-3);
  font-weight: var(--font-weight-bold);
}
footer .footer-lang-switch .seperator {
  margin-inline: 0.6em;
}
footer .footer-lang-switch a {
  color: var(--color-background);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer .footer-lang-switch a:hover {
  color: var(--color-primary-light);
}
footer .footer-lang-switch .active {
  color: var(--color-primary);
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--s-3) 0;
  font-size: 0.86em;
  color: rgba(255, 255, 255, 0.68);
}
footer .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
footer .footer-bottom-inner p {
  margin: 0;
  flex: 1;
}
footer .footer-bottom-inner a {
  color: var(--color-primary);
  text-decoration: underline;
}
footer .footer-bottom-inner a:hover {
  color: var(--color-primary-light);
}
/* Mobile Responsiveness for Footer Bottom */
@media (max-width: 768px) {
  footer .footer-bottom-inner {
    flex-direction: column;
    gap: var(--s-1);
  }
}