/* ===================== Reset & Normalize ===================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
html {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #f6f6f8;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
}


/* ===================== Luxury Premium Variables ===================== */
:root {
  --primary: #14213d;
  --primary-rgb: 20, 33, 61;
  --secondary: #00bfae;
  --accent: #fdf6e3;
  --gold: #bfa760;
  --gold-dark: #a58b2c;
  --card-bg: #fff;
  --card-bg-alt: #f6f5f1;
  --danger: #d1322a;
  --shadow: 0 4px 24px rgba(20,33,61,0.08);
}

/* Google Fonts import (insert via HTML or @import) */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: local('Montserrat'), local('Montserrat-Regular'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm459WxZqhg.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  font-display: swap;
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Me5Q.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

body {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ===================== Typography ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5, h6 {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  color: #5b5b68;
  margin-bottom: 24px;
  line-height: 1.6;
}
p {
  margin-bottom: 18px;
  color: #15151f;
  font-size: 1rem;
}
strong {
  color: var(--primary);
}
blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0 24px 0;
  font-style: italic;
  color: #3d3e4b;
  background: rgba(245, 242, 235,0.65);
  font-size: 1.08rem;
}


/* ===================== Containers ===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Accent background section */
.accent-bg {
  background: #fff9ee;
}


/* ===================== Header ===================== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  padding: 18px 24px 18px 24px;
  border-bottom: 1.5px solid #e8e6e1;
  position: relative;
  z-index: 40;
}
header > a > img {
  height: 38px;
  width: auto;
  transition: filter 0.2s;
}

header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #252539;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: var(--gold);
}
.header .button {
  margin-left: 26px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  margin-left: 18px;
  line-height: 1;
  z-index: 51;
}
.mobile-menu-toggle:focus {
  color: var(--gold);
}

/* ===================== Buttons ===================== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 32px;
  background: var(--card-bg);
  color: var(--primary);
  border: 2px solid var(--gold);
  border-radius: 26px;
  box-shadow: 0 2px 12px rgba(20,33,61,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.25s, border 0.18s, transform 0.2s;
  outline: none;
  text-align: center;
}
.button:active {
  transform: scale(0.98);
}
.button:hover, .button:focus {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 4px 20px rgba(191,167,96,0.13);
}
.button.primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--gold);
}
.button.primary:hover, .button.primary:focus {
  background: var(--gold);
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* ===================== Hero Section ===================== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: linear-gradient(100deg, #fff9ee 60%, #f5efe2 120%);
  padding: 60px 0 36px 0;
  box-shadow: 0 4px 32px rgba(191,167,96,0.03);
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.4rem;
  text-shadow: 0 2px 11px rgba(245,235,186,0.13);
  margin-bottom: 16px;
}
.hero-section .subheadline {
  margin-bottom: 32px;
}

/* ===================== Features Section ===================== */
.features-section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features-section h2 {
  margin-bottom: 32px;
  color: var(--primary);
}

/* Feature-Grid (mobile: column, desktop: row) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 8px;
}
.feature-grid li, .feature-grid div {
  background: var(--card-bg-alt);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(20,33,61,0.06);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px 22px 22px;
  position: relative;
  border: 1px solid rgba(191,167,96,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.21s, border 0.18s, transform 0.16s;
}
.feature-grid li img, .feature-grid div img {
  height: 42px;
  width: 42px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 6px rgba(191,167,96,0.11));
}
.feature-grid li:hover, .feature-grid div:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 26px rgba(191,167,96,0.08);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid li h3, .feature-grid div h3 {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.feature-grid li p, .feature-grid div p {
  margin-bottom: 0;
}


/* ===================== Services Section ===================== */
.services-section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.services-section h2 {
  margin-bottom: 32px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(20,33,61,0.07);
  position: relative;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 28px 24px;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.16s, transform 0.19s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(191,167,96,0.13);
  transform: translateY(-4px) scale(1.017);
}
.service-card h3 {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.service-card .price {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.service-card .button {
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--gold);
}
.service-card .button:hover, .service-card .button:focus {
  background: var(--gold);
  color: var(--primary);
}

/* ===================== About Section, Info Section, Contact Shortcut ===================== */
.about-section, .info-section, .contact-shortcut {
  margin-bottom: 60px;
  padding: 40px 0;
}
.about-section ul,
.team-section ul
{
  list-style: disc inside;
  margin-bottom: 22px;
  margin-left: 12px;
  color: #333;
  font-size: 1rem;
  opacity: 0.93;
}
.about-section ul li,
.team-section ul li {
  margin-bottom: 10px;
}
.contact-shortcut .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
  font-size: 1.05rem;
}
.contact-shortcut .button {
  margin-top: 10px;
}

.opening-hours, .location-description {
  margin-bottom: 14px;
}


/* ===================== Testimonial Card ===================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px 20px 26px;
  margin-bottom: 22px;
  box-shadow: 0 6px 22px rgba(20,33,61,0.09);
  border-left: 6px solid var(--gold);
  color: #131334;
  transition: box-shadow 0.25s, transform 0.15s;
}
.testimonial-card p {
  color: #232236;
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #68696c;
  font-size: 0.96rem;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 14px 34px rgba(191,167,96,0.12);
  transform: translateY(-2px) scale(1.01);
}


/* ===================== Footer ===================== */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary);
  color: #f9f9fc;
  padding: 38px 14px 22px 14px;
  border-top: 3px solid var(--gold);
  margin-top: 40px;
}
footer img {
  width: 54px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 11px rgba(191,167,96,0.13));
}
footer nav {
  display: flex;
  gap: 26px;
  margin-bottom: 14px;
}
footer nav a {
  color: #e8c873;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  opacity: 0.91;
  transition: color 0.2s, opacity 0.18s;
}
footer nav a:hover {
  color: var(--gold);
  opacity: 1;
}
.footer-contact {
  color: #f4db92;
  opacity: 0.87;
  font-size: 0.98rem;
  text-align: center;
}


/* ===================== Mobile Navigation ===================== */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(20, 33, 61, 0.98);
  color: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px 18px 28px;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(0.7,0,0.3,1);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.18s;
  line-height: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  padding: 12px 0;
  border-radius: 7px;
  background: none;
  transition: background 0.17s, color 0.18s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(191,167,96,0.12);
  color: var(--gold);
}

@media (max-width: 1024px) {
  header nav {
    gap: 15px;
  }
  .service-list {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .feature-grid, .service-list {
    gap: 10px;
  }
  .service-card, .feature-grid li, .feature-grid div {
    min-width: 180px;
    max-width: 100%;
    padding: 18px 12px 16px 16px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 10px 12px 14px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-section {
    padding: 36px 0 18px 0;
    min-height: 220px;
  }
  .section, .features-section, .services-section, .about-section, .info-section, .contact-shortcut {
    padding: 24px 0;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .feature-grid div, .service-card {
    max-width: 100%;
    min-width: 0;
  }
  .testimonial-card {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .footer-contact {
    font-size: 0.85rem;
  }
  .container {
    padding: 0 3vw;
  }
  .testimonial-card {
    padding: 10px 6px;
  }
}


/* ===================== Modal Overlay (for cookies) ===================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  height: 100vh; width: 100vw;
  background: rgba(20,33,61,0.78);
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff9ee;
  border-radius: 22px;
  max-width: 380px;
  width: 90vw;
  box-shadow: 0 12px 52px rgba(20,33,61,0.17);
  padding: 38px 30px 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: fadeInModal 0.38s cubic-bezier(.5,1.6,.5,1.13);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.cookie-category label {
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px; height: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 16px;
}
.cookie-modal .button {
  padding: 9px 20px;
  font-size: 0.98rem;
}

/* ===================== Cookie Consent Banner ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right:0;
  width: 100vw;
  background: #2a2642;
  color: #fffde6;
  z-index: 1101;
  padding: 26px 15px 20px 22px;
  box-shadow: 0 -4px 20px rgba(20,33,61,0.13);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  transition: transform 0.35s, opacity 0.29s;
  font-size: 1.1rem;
  animation: slideBannerIn 0.38s cubic-bezier(.34,1.2,.72,1.06);
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
@keyframes slideBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 2 1 200px;
  min-width: 120px;
  font-size: 1.01rem;
  color: #fff9df;
  margin-right: 6px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .button {
  padding: 8px 19px;
  font-size: 0.98rem;
  border-radius: 18px;
}
.cookie-banner .button.primary {
  background: var(--gold);
  color: var(--primary);
}
.cookie-banner .button.settings {
  background: transparent;
  color: #fff9df;
  border: 1.8px solid #fff7cc;
  font-weight: 500;
}
.cookie-banner .button.settings:hover {
  background: #fff4c4;
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 7vw 16px 6vw;
    font-size: 0.98rem;
  }
}


/* ===================== Misc & Animations ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(20,33,61,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 12px 28px rgba(191,167,96,0.11);
  transform: translateY(-4px) scale(1.017);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.next-steps-info ul {
  margin-left: 18px;
  margin-bottom: 14px;
  list-style: disc inside;
}
.next-steps-info li {
  margin-bottom: 7px;
}

.opening-hours {
  margin-bottom: 12px;
  font-weight: 500;
}
.location-description {
  margin-bottom: 14px;
}

/* ====== Contact Section Layout ====== */
.contact-section .content-wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-section img {
  vertical-align: middle;
  height: 22px;
  width: 22px;
  margin-right: 10px;
  display: inline-block;
  filter: drop-shadow(0 1px 5px rgba(191,167,96,0.08));
}

/* ====== Confirmation Section (Thank you page) ====== */
.confirmation-section {
  background: #fff9ef;
  border-radius: 28px;
}
.confirmation-section h1, .confirmation-section h2 {
  color: var(--primary);
}

/* ====== Utilities ====== */
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }


/* ======================= Accessibility/Focus ======================= */
a:focus, button:focus {
  outline: 2.5px solid var(--gold);
  outline-offset: 1.5px;
  z-index: 2;
}


/* ======================= Print Hide Elements ======================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .modal-overlay { display: none !important; }
}
