/* =============================================================
   Tempest Gale Reisen - Monochrome Sophisticated Style (Flexbox)
   =============================================================
   Mobile-first, flexbox only (NO CSS Grid/Columns)
   Brand: Montserrat (display), Open Sans (body), dramatic contrast
===============================================================*/

/* 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, 
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
}
strong {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #111;
  line-height: 1.13;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.17rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 10px; }
.subheadline {
  font-size: 1.13rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #444;
  margin-bottom: 24px;
}

/* ====== BRAND COLORS (MONOCHROME, HIGH CONTRAST) ====== */
:root {
  --tg-black: #1A1A1A;
  --tg-white: #ffffff;
  --tg-gray-light: #f6f6f6;
  --tg-gray: #ededed;
  --tg-gray-2: #d8d8d8;
  --tg-gray-3: #b7b7b7;
  --tg-gray-dark: #333c42;
  --tg-brand-blue: #185689;
  --tg-brand-accent: #74A88D;
}

/* =============== LAYOUT CONTAINERS ======================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Section spacing and alignment patterns */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--tg-white);
}
@media (max-width: 600px){
  section { padding: 25px 8px; margin-bottom: 36px; }
}

/* --------- HEADER & NAVIGATION --------- */
header {
  background: var(--tg-white);
  border-bottom: 1px solid var(--tg-gray-2);
  padding-top: 0.5em;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
  position: relative;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--tg-black);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 2px 6px;
  transition: color 0.17s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--tg-brand-blue);
  transition: width 0.2s;
  margin: 0 auto;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 90%;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--tg-brand-blue);
}
.button.btn-primary {
  margin-left: 18px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--tg-brand-blue);
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.2s, background 0.2s;
  border-radius: 50%;
  padding: 4px 8px;
  z-index: 111;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--tg-brand-blue);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,22,22,0.99);
  color: var(--tg-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(.77,.2,.05,1.0);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--tg-white);
  font-size: 2rem;
  align-self: flex-end;
  margin: 20px 26px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 222;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 56px;
  margin-left: 40px;
}
.mobile-nav a {
  color: var(--tg-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 4px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--tg-brand-blue);
}
@media (max-width: 1130px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 960px) {
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .button.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ===== BUTTONS ===== */
.button, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 34px;
  padding: 12px 28px;
  margin: 16px 0 0 0;
  background: var(--tg-black);
  color: var(--tg-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.09);
  cursor: pointer;
  transition: background 0.2s, transform 0.18s, color 0.23s;
  letter-spacing: 0.02em;
  outline: none;
  min-width: 170px;
}
.button:hover, .btn-primary:hover, .button:focus, .btn-primary:focus {
  background: var(--tg-brand-blue);
  color: var(--tg-white);
  transform: translateY(-2px) scale(1.03);
}
.button:active, .btn-primary:active {
  background: var(--tg-black);
  color: var(--tg-white);
  transform: none;
}

/* ----- SECTIONS, FEATURES, CARDS, TESTIMONIALS ----- */
.features-grid, .feature-icons, .usp-grid, .icon-set, .icon-list, .usp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  align-items: center;
}
.features-grid { gap: 24px; flex-wrap: wrap; justify-content: flex-start; }
.feature-card {
  background: var(--tg-gray-light);
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  border: none;
  padding: 32px 26px 22px 26px;
  flex: 1 1 275px;
  max-width: 329px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature-card:hover {
  box-shadow: 0 8px 30px rgba(24,24,24,0.13);
  transform: translateY(-4px) scale(1.03);
}
.feature-card img {
  width: 44px;
  margin-bottom: 8px;
}
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--tg-gray-light);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 8px 42px rgba(22,22,22,0.20);
  transform: translateY(-2px) scale(1.02);
}
/* Content grid for mixed elements */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Vertical text-image alignments */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .features-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--tg-gray);
  border-left: 6px solid var(--tg-brand-blue);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  color: #181818;
  transition: box-shadow 0.18s, border-color 0.18s;
  min-width: 220px;
}
.testimonial-card:hover {
  border-color: var(--tg-brand-accent);
  box-shadow: 0 8px 32px rgba(22,22,22,0.12);
}
.testimonial-card .stars {
  font-size: 1.2rem;
  color: var(--tg-brand-blue);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: -6px;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  opacity: 0.8;
  margin-top: -10px;
}

/* Cards, features and testimonials gap */
.feature-card, .card, .testimonial-card { margin-bottom: 20px; }

/**************** LISTS & TABLES ****************/
ul.service-list, ul.usp-list, ul.group-service-list, ul.featured-photo-tours {
  margin-top: 12px;
  margin-bottom: 22px;
  padding-left: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
ul.service-list li, ul.usp-list li, ul.group-service-list li, ul.featured-photo-tours li {
  list-style: disc inside;
  font-size: 1rem;
  color: #222;
  background: none;
  border: none;
}
ol {
  padding-left: 1.4em;
  margin-top: 10px;
  margin-bottom: 16px;
}
ol li {
  margin-bottom: 8px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--tg-white);
  margin: 28px 0 24px 0;
}
table caption {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 12px;
}
thead tr {
  background: var(--tg-black);
  color: var(--tg-white);
}
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--tg-gray-2);
  font-size: 1rem;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ----------- FOOTER ----------- */
footer {
  background: var(--tg-black);
  color: var(--tg-gray-light);
  font-size: 0.95rem;
  border-top: 1px solid var(--tg-gray-2);
  padding-top: 24px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}
.footer-nav a {
  color: var(--tg-gray-light);
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--tg-brand-accent);
  text-decoration: underline;
}
.footer-brand {
  color: var(--tg-gray-3);
  font-size: 0.92rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 10px;
  opacity: 0.76;
}

/* --- USP/FEATURE ICON GRIDS --- */
.usp-grid, .icon-set, .feature-icons, .usp-icons, .icon-list {
  margin-top: 12px;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.usp-grid div, .icon-set img, .feature-icons img, .usp-icons img, .icon-list img {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  color: #444;
  background: var(--tg-gray-light);
  padding: 10px 18px;
  border-radius: 14px;
  gap: 9px;
  min-width: 48px;
  transition: background 0.18s;
}
.usp-grid div:hover, .icon-list img:hover, .feature-icons img:hover, .usp-icons img:hover {
  background: var(--tg-gray-2);
}

/**************** FORMATS ****************/
.content-wrapper > *:not(:last-child) { margin-bottom: 18px; }
@media (max-width: 900px) {
  .feature-card, .card {
    min-width: 180px;
    max-width: 92vw;
  }
}

/********* MICROS & UTILITIES *********/
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

.text-section {
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
  background: none;
  border: none;
  padding: 0;
}
.contact-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .contact-block {
    flex-direction: column;
    gap: 10px;
  }
}
.success-stories, .customization-options, .price-examples, .workshop-topics, .workshop-leaders, .guide-profiles {
  margin: 18px 0 8px 0;
  font-size: 1.02rem;
  color: #222;
  font-weight: 500;
}

/********* COOKIE CONSENT BANNER & MODAL *********/
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(20,20,20,0.96);
  color: var(--tg-white);
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 24px 28px;
  box-shadow: 0 -2px 18px rgba(0,0,0,0.22);
  animation: cookieBannerIn 0.4s cubic-bezier(.67,-0.41,.65,1.47);
}
@keyframes cookieBannerIn {
  from { transform: translateY(80px); opacity: 0.1; }
  to   { transform: none; opacity: 1; }
}
#cookie-banner p {
  color: var(--tg-white);
  font-size: 1rem;
  margin-right: 20px;
  flex: 1 1 0%; min-width: 0;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
#cookie-banner .cookie-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 32px;
  border: none;
  padding: 10px 22px;
  background: var(--tg-white);
  color: var(--tg-black);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.16s, color 0.19s, transform 0.17s;
}
#cookie-banner .cookie-btns button:hover, #cookie-banner .cookie-btns button:focus {
  color: var(--tg-white);
  background: var(--tg-brand-blue);
  transform: translateY(-2px);
}
#cookie-banner .cookie-btns .secondary {
  background: var(--tg-gray-2);
  color: var(--tg-black);
}
#cookie-banner .cookie-btns .secondary:hover {
  background: var(--tg-black);
  color: var(--tg-white);
}
#cookie-banner .cookie-btns .settings {
  background: var(--tg-brand-blue);
  color: var(--tg-white);
}
#cookie-banner .cookie-btns .settings:hover {
  background: var(--tg-black);
  color: var(--tg-white);
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; gap: 14px; padding: 17px 8px; }
  #cookie-banner p { margin: 0; }
}

/* Cookie Modal */
#cookie-modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(12,12,12,0.91);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.42s cubic-bezier(.45,0,.55,1);
}
#cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal {
  background: var(--tg-white);
  color: var(--tg-black);
  width: 96vw;
  max-width: 426px;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(28,28,28,0.28);
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalIn .33s cubic-bezier(.47,-0.24,.54,1.34);
  position: relative;
}
@keyframes modalIn { from{ transform: scale(.92) translateY(33px); opacity:0; } to{ transform: none; opacity:1; } }
#cookie-modal h2 { margin-top: 0; margin-bottom: 7px; font-size: 1.17rem; color: #181818; }
#cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 16px;
  border: none;
  background: none;
  font-size: 1.4rem;
  color: #222;
  cursor: pointer;
  transition: color 0.17s;
}
#cookie-modal .modal-close:hover {
  color: var(--tg-brand-blue);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1rem;
  color: #202020;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category .toggle {
  position: relative;
  display: inline-block;
  width: 42px; height: 24px;
}
.cookie-category .toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--tg-gray-2);
  border-radius: 19px;
  transition: background 0.2s;
}
.cookie-category .toggle input:checked + .slider {
  background: var(--tg-brand-blue);
}
.cookie-category .slider:before {
  content: '';
  position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.cookie-category .toggle input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 26px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: var(--tg-brand-blue);
  color: var(--tg-white);
  transition: background 0.20s;
}
.cookie-modal-actions button.secondary {
  background: var(--tg-gray-2);
  color: #202020;
}
.cookie-modal-actions button.secondary:hover {
  background: #181818;
  color: var(--tg-white);
}
.cookie-modal-actions button:hover {
  background: var(--tg-black);
}

/****************** RESPONSIVE CSS ******************/
@media (max-width: 1120px) {
  .container { max-width: 98vw; }
  .features-grid, .cards-container { gap: 20px; }
}
@media (max-width: 900px) {
  .features-grid { gap: 16px; }
  section { padding: 28px 8px; }
}
@media (max-width: 700px) {
  .features-grid {
    flex-direction: column; gap: 14px;
  }
  .feature-card, .card, .testimonial-card, .text-image-section {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
  }
}
@media (max-width: 400px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.13rem; }
}

/*********** FINE-TUNING & MISC ***********/
.content-wrapper > a.button, .content-wrapper > a.btn-primary {
  margin-top: 10px;
}
.content-wrapper > h2 {
  margin-top: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/*********** PRINT SUPPORT ***********/
@media print {
  header, footer, #cookie-banner, #cookie-modal-overlay { display: none !important; }
  section { margin-bottom:20px; padding:8px 0; }
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  border: 0; padding: 0;
}

/******** TYPOGRAPHY LEVELS ********/
.display-1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 3rem; font-weight: 800; color: #111; }
.display-2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 700; color: #222; }

/******* MICRO-ANIMATION *******/
a, .button, .btn-primary, .mobile-menu-toggle, .mobile-nav a, th, td {
  transition: color 0.18s, background 0.18s, box-shadow 0.16s, transform 0.13s;
}

/********** END STYLE **********/

