/* =================================================
   CSS RESET & NORMALIZATION FOR CONSISTENT BASELINE
   ================================================= */
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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
footer p {
  color: white;
}
html {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f9f9fb;
  min-height: 100vh;
  color: #192336;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
img {
  border: none;
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.2;
  margin: 0;
  border-radius: 0;
  outline: none;
}

/* ============
   FONT IMPORTS
   ============ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #114477;
  --secondary: #EDF0F4;
  --accent: #FFB802;
  --dark: #192336;
  --light: #fff;
  --text-body: #22293C;
  --text-subtle: #525668;
  --grey-bg: #F9F9FB;
  --border-color: #e4e5ea;
}

/* ============================
   BASE TYPOGRAPHY & HEADINGS
   ============================ */
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-body);
  background: var(--grey-bg);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.08rem; margin-bottom: 10px; }
p, ul, ol, table, .embedded-map, .directions {
  font-size: 1rem;
  color: var(--text-subtle);
  margin-bottom: 16px;
  line-height: 1.7;
}
strong, b {
  color: var(--primary);
  font-weight: 700;
}
em {
  color: var(--accent);
  font-style: italic;
}

/* =============
   CONSTRAINTS
   ============= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

/* =============================
   HEADER, NAVIGATION, & HERO
   ============================= */
header {
  background: var(--light);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 12px;
}
header img {
  height: 54px;
  margin-right: 24px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary);
}
.cta.primary {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  padding: 12px 36px;
  box-shadow: 0 1.5px 9px rgba(17,68,119,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  border-bottom: 2px solid var(--accent);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 32px rgba(255,184,2,0.18);
  border-bottom: 2px solid var(--primary);
}

.mobile-menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: none;
  z-index: 201;
  transition: color 0.2s, background 0.2s;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  color: var(--accent);
  background: var(--secondary);
}

/* HAMBURGER/MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 34, 44, 0.96);
  box-shadow: 0 2px 24px rgba(17,68,119,0.25);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  padding-left: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 0 24px 18px;
  font-size: 2rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  z-index: 2100;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-left: 32px;
}
.mobile-nav a {
  color: var(--light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  position: relative;
  transition: color 0.16s, text-shadow 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  text-shadow: 0 2px 18px rgba(255,184,2,0.07);
}

/* ===========
   HERO BLOCK
   =========== */
.hero {
  background: linear-gradient(120deg, var(--secondary) 68%, #e7eaf1 100%);
  padding: 48px 0 36px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  gap: 22px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.3rem;
  line-height: 1.18;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 18px;
}
.hero .cta.primary {
  font-size: 1.13rem;
  margin-top: 10px;
  padding: 14px 38px;
}

/* ====================
   SPACING/SECTIONING
   ==================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.text-section {
  max-width: 680px;
  margin: 0 auto;
  gap: 16px;
  font-size: 1.03rem;
}

/* FLEX UTILITY CLASSES AS REQUIRED */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px;
}
.feature {
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 8px 36px rgba(17,68,119,0.06), 0 1px 5px rgba(17,68,119,0.02);
  padding: 32px 24px 28px 24px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  border: 1.5px solid var(--border-color);
  position: relative;
  transition: box-shadow 0.18s, border-color 0.13s, transform 0.15s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 12px 48px 0 rgba(255,184,2,0.09), 0 2px 16px 0 rgba(17,68,119,0.04);
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.012);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 1.5px rgba(17,68,119,0.10));
}
.feature h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature span {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ================
   TESTIMONIALS
   ================ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px;
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(17,68,119,0.056);
  border-left: 4px solid var(--accent);
  margin-bottom: 20px;
  margin-top: 8px;
  max-width: 520px;
  color: var(--dark);
  font-size: 1rem;
  transition: box-shadow 0.16s, transform 0.17s;
}
.testimonial-card p {
  color: var(--dark);
  font-style: italic;
  font-size: 1.06rem;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 48px rgba(255,184,2,0.11), 0 2px 8px 0 rgba(17,68,119,0.04);
  transform: scale(1.015);
}

/* ============
   TABLE STYLING
   ============ */
.pricing-table {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 9px;
  overflow-x: auto;
  background: var(--light);
  box-shadow: 0 4px 24px rgba(17,68,119,0.05);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 16px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border-bottom: 1px solid var(--border-color);
}
.pricing-table th {
  background: var(--secondary);
  color: var(--primary);
  letter-spacing: 0.02em;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover td {
  background: rgba(255,184,2,0.08);
}

/* =============
   FOOTER BLOCK
   ============= */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 40px 0 24px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.17s;
  margin-bottom: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact {
  font-size: 1rem;
}
.footer-contact strong {
  color: var(--accent);
}
.footer-brand {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer-brand img {
  height: 58px;
}

/* ==== EMBEDDED MAP & DIRECTIONS (KONTAKT) ==== */
.embedded-map {
  border-radius: 10px;
  font-size: 1rem;
  margin: 10px 0 24px 0;
  color: var(--text-subtle);
  background: #edf0f4;
}
.directions {
  margin-top: 6px;
}
.directions h3 {
  margin-bottom: 8px;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--dark);
  color: var(--secondary);
  box-shadow: 0 -4px 32px rgba(17,68,119,0.12);
  border-top: 2px solid var(--accent);
  padding: 20px 20px 28px 20px;
  z-index: 5010;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.37s cubic-bezier(0.73,0.03,0.23,0.97);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner button {
  margin-left: 8px;
}
.cookie-btn, .cookie-settings-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 26px;
  margin-right: 8px;
  cursor: pointer;
  transition: background .19s, color .18s;
  box-shadow: 0 1.5px 5px 0 rgba(255,184,2, 0.05);
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.cookie-btn.reject {
  background: var(--light);
  color: var(--text-body);
}
.cookie-btn:hover, .cookie-btn:focus,
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--accent);
  color: var(--primary);
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 34, 44, 0.67);
  z-index: 5050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.26s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: var(--light);
  color: var(--dark);
  border-radius: 18px;
  box-shadow: 0 12px 48px 0 rgba(17,68,119,0.16),0 1px 8px rgba(255,184,2,0.09);
  max-width: 480px;
  width: 94vw;
  padding: 38px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  animation: popInCookie .25s cubic-bezier(.97,0,.08,.96);
}
@keyframes popInCookie {
  0% { opacity: 0; transform: scale(.85) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h2 {
  color: var(--primary);
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-size: 1.03rem;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}
input[type=checkbox].toggle-switch {
  accent-color: var(--primary);
  width: 18px; height: 18px;
}

/* ===============
   CARD CONTAINER
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(17,68,119,0.09);
  background: var(--light);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, border-color 0.13s, transform 0.15s;
  border: 1.2px solid var(--border-color);
}
.card:hover, .card:focus-within {
  box-shadow: 0 11px 38px 0 rgba(255,184,2,0.10), 0 2px 12px 0 rgba(17,68,119,0.04);
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

/* CONTENT GRID - FLEXBOX */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* TEXT-IMAGE SECTION - FLEXBOX */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FEATURES FLEX LAYOUT */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   BUTTONS & INTERACTIVES STYLES
   ============================= */
button, .cta, .cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, border 0.15s;
  outline: none;
}
button:focus, .cta:focus, .cookie-btn:focus { outline: 2px solid var(--accent); }

/* ================
   FORM ELEMENTS (future-proof)
   ================ */
input, select, textarea {
  background: #fcfcfd;
  border: 1.2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 14px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
}

/* =====================
   MISCELLANEOUS STYLES
   ===================== */
ul li, ol li {
  margin-left: 24px;
  margin-bottom: 10px;
  list-style: disc;
  font-size: 1.02rem;
  color: var(--text-subtle);
}
ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
}
a {
  color: var(--primary);
  transition: color 0.17s;
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

/* SECTION Headings underline accent for luxury touch */
h2, .section-title {
  position: relative;
  padding-bottom: 6px;
}
h2:after, .section-title:after {
  content: '';
  display: block;
  margin-top: 8px;
  width: 42px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ================
   RESPONSIVE DESIGN
   ================ */
@media (max-width: 1025px) {
  .container { max-width: 98vw; }
  .footer-brand img { height: 45px; }
}
@media (max-width: 900px) {
  .feature {
    min-width: 178px;
    max-width: 98vw;
    padding: 24px 12px 18px 12px;
  }
  .footer-brand img { height: 36px; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 70px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta.primary { padding: 11px 27px; font-size: 1.03rem; margin-left: 2px; }
  .hero, section {
    padding: 28px 8px !important;
  }
  .container { padding: 0 6px; }
  .footer-brand img { height: 30px; }
  footer .container { gap: 12px; flex-direction: column; align-items: flex-start; }
  .feature-grid { gap: 14px; margin: 0; }
  .feature { min-width: 98vw; max-width: 98vw; padding: 18px 7px 13px 7px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.48rem; margin-bottom: 16px; }
  h2 { font-size: 1.13rem; margin-bottom: 12px; }
  .content-wrapper, .text-section {
    padding: 0;
    margin: 0 auto;
    max-width: 97vw;
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px 7px;
    font-size: 0.97rem;
    max-width: 95vw;
  }
  .pricing-table th, .pricing-table td {
    padding: 8px 6px;
    font-size: 0.94rem;
  }
  section { margin-bottom: 28px; }
}
@media (max-width: 768px) {
  .footer-nav { flex-direction: column; gap: 6px; min-width: 120px; }
  .footer-contact { font-size: 0.97rem; }
  .content-grid { gap: 10px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}


/* =======================
   MICRO-INTERACTIONS & LUXURY EFFECTS
   ======================= */
.feature::before,
.card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background-image: linear-gradient(90deg, transparent 0%, var(--accent) 18%, transparent 100%);
  opacity: 0.15;
  pointer-events: none;
}
.feature:hover::before, .card:hover::before {
  opacity: 0.65;
  animation: gold-gleam 0.85s linear;
}
@keyframes gold-gleam {
  0% { opacity: 0.15; }
  40% { opacity: 1; }
  100% { opacity: 0.69; }
}


/* =======================
   UTILITY: Hide/Show mobile nav
   ======================= */
@media (min-width: 769px) {
  .main-nav { display: flex !important; }
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

/* ===============
   Z-INDEX RULES
   =============== */
header { z-index: 401; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 5100; }
.cookie-modal { z-index: 5103; }

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* ===========
   PRINT STYLE
   =========== */
@media print {
  header, .main-nav, .mobile-menu, .cta, .cookie-banner, .cookie-modal, footer { display: none !important; }
  section { padding: 0; margin: 0 0 10px 0; background: transparent !important; }
}

/* =============
   END OF FILE
   ============= */