/* --- CSS 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F8F4E8;
  color: #21272d;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2A487F;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F27649;
  text-decoration: underline;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
}
:focus {
  outline: 2px dashed #2A487F;
  outline-offset: 2px;
}

/* --- VINTAGE RETRO COLORS & FONTS --- */
:root {
  --primary: #2A487F; /* Navy */
  --secondary: #FCFAF7; /* Vintage off-white */
  --accent: #4DA199; /* Retro teal */
  --danger: #E24C4B;
  --retro-yellow: #F7D488;
  --retro-orange: #F27649;
  --retro-brown: #8A7350;
  --retro-green: #74B49B;
  --retro-blue: #5B83A6;
  --text-dark: #3D2C21;
  --text-light: #FEF8EA;
  --border: #D7CBB1;
  --shadow: rgba(42, 72, 127, 0.13);
  --radius: 16px;
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

/* --- TYPOGRAPHY VINTAGE RETRO --- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background-color: #F8F4E8;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 16px;
  text-shadow: 0 2px 0 var(--retro-yellow), 0 4px 10px rgba(42,72,127,0.08);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}

/* --- CONTAINER LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 6px 28px var(--shadow), 0 2px 6px #EDE7DA;
}

/* --- FLEX PATTERNS MANDATORY --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF7EF;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 3px 13px var(--shadow);
  margin-bottom: 20px;
  padding: 28px 22px 22px 22px;
  position: relative;
  min-width: 260px;
  transition: transform .12s cubic-bezier(.4,.03,.55,1.4), box-shadow .18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 9px 30px var(--shadow), 0 5px 16px #E5E0D2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 18px 30px;
  margin-bottom: 22px;
  background: #FFF6E8;
  border: 2px solid var(--retro-yellow);
  border-radius: 14px 14px 32px 14px;
  box-shadow: 0 2px 13px var(--shadow);
  max-width: 680px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.values-list, .booking-features, .faq-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  list-style: none;
}
.values-list li, .booking-features li, .faq-list ul li {
  background: #FFF7EC;
  border-radius: 14px;
  border: 2px solid var(--border);
  padding: 24px 18px;
  min-width: 212px;
  box-shadow: 0 2px 9px var(--shadow);
  font-size: 1rem;
}

/* --- BUTTONS & INTERACTIVE ELEMENTS --- */
.btn {
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 14px 36px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 14px var(--shadow);
  transition: background .22s, color .14s, box-shadow .15s, transform .13s;
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: var(--primary);
  color: #FFF7ED;
  border: 2px solid #1C315A;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: #222;
  box-shadow: 0 3px 22px var(--accent);
  transform: scale(1.045) skew(-1deg);
}
.btn-secondary {
  background: var(--retro-yellow);
  color: #3D2C21;
  border: 2px solid var(--retro-orange);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--retro-orange);
  color: #FAC;
  transform: scale(1.043) rotate(1.8deg);
  box-shadow: 0 7px 20px var(--retro-orange);
}
.btn-danger {
  background: var(--danger);
  color: #FFF;
  border: 2px solid #B1261B;
}
.btn-danger:hover, .btn-danger:focus {
  background: #B1261B;
  color: #FFC6C0;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--retro-yellow);
  box-shadow: 0 1px 8px var(--shadow);
  position: relative;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  position: relative;
}
.logo img {
  display: block;
  height: 56px;
  width: auto;
  margin-right: 6px;
  filter: sepia(.11) contrast(1.2) brightness(1.1);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.03rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.006em;
  padding: 3px 8px;
  border-radius: 8px;
  transition: background .2s, color .14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #FFF7ED;
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #FFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 10px var(--accent);
  margin-left: 18px;
  transition: background .18s, color .14s;
  z-index: 2002;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--primary);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--retro-yellow);
  z-index: 2050;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform .39s cubic-bezier(.67,-0.13,.42,1.07);
  box-shadow: 0 9px 24px var(--shadow);
  padding: 0 0 0 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 20px;
  margin-left: 23px;
  background: var(--danger);
  color: #FFF6E9;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 10px var(--danger);
  transition: background .14s, color .14s;
  z-index: 2052;
}
.mobile-menu-close:hover,.mobile-menu-close:focus { background: #B1261B;color:#FFD3CB; }
.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 18px 38px;
  border-radius: 18px;
  transition: background .21s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: #FFF7E9;
}

/* --- HERO SECTIONS --- */
.hero {
  padding-top: 60px;
  padding-bottom: 60px;
  background: repeating-linear-gradient(120deg, #FFF8EE, #F7D488 32px, #FFF8EE 42px);
  border-bottom: 7px double var(--retro-orange);
  min-height: 300px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 620px;
  margin-top: 24px;
}
.hero h1 {
  color: var(--retro-brown);
  font-size: 2.3rem;
  text-shadow: 1px 2px var(--retro-yellow),0 7px 16px rgba(0,0,0,.04);
}
.hero p {
  color: var(--primary);
  font-size: 1.14rem;
}

/* --- FEATURE SECTIONS --- */
.features .content-wrapper>h2 {
  margin-bottom: 10px;
  color: var(--primary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
  list-style: none;
}
.feature-grid li {
  background: #FFF7EF;
  border: 2px solid var(--retro-yellow);
  box-shadow: 0 2px 12px var(--shadow);
  border-radius: 18px 36px 18px 16px;
  min-width: 210px;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow .18s, transform .17s;
}
.feature-grid li img {
  width: 45px; height: 45px; margin-bottom: 10px; filter: sepia(.21) brightness(1.15);
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 5px 18px var(--retro-yellow),0 1px 7px var(--shadow);
  transform: translateY(-3px) scale(1.03) rotate(1deg);
}

/* --- TESTIMONIALS & RATINGS --- */
.testimonials {
  background: #F5F0E0;
  border-radius: 20px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #2A487F;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--retro-brown);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  margin-top: 18px;
}
.rating-summary img {
  width: 34px; height: 34px;
  filter: sepia(.2) brightness(1.1);
}
.rating-summary span {
  font-family: var(--font-display);
  font-size: 1.23rem;
  color: var(--accent);
}

/* --- CTA STEPS --- */
.cta {
  background: linear-gradient(90deg,#F7D488 0 50%,#FFF6E8 65%);
  border-radius: 24px;
  margin: 62px 0 60px 0;
  box-shadow: 0 1px 16px var(--shadow);
  padding: 48px 0 52px 0;
}
.cta ol {
  margin-bottom: 12px;
  padding-left: 32px;
  font-size: 1.13rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  padding: 40px 0 16px 0;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 12px;
  filter: sepia(.1) brightness(1.17);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--retro-yellow);
  font-family: var(--font-display);
  font-size: 1.01rem;
  transition: color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 24px; height: 24px;
  filter: sepia(.13) contrast(1.08);
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  color: #FFF6E8;
  margin-top: 18px;
}

/* --- FAQ PAGE --- */
.faq-search-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.faq-search-section input[type=search] {
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #FFF7E9;
  padding: 9px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border .16s;
}
.faq-search-section input[type=search]:focus {
  border: 2px solid var(--accent);
}
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--retro-brown);
}
.faq-categories ul {
  display: flex;
  gap: 9px;
  list-style: none;
}
.faq-categories li {
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: 8px;
  padding: 3px 13px;
  font-family: var(--font-display);
  font-size: .99rem;
}
.faq-list ul {
  gap: 20px;
  flex-direction: column;
  margin-left: 0;
}
.faq-list ul li {
  background: #FFF7EF;
  border: 2px solid var(--border);
  padding: 17px 16px;
  border-radius: 11px;
  margin-bottom: 6px;
}
.ask-a-question {
  background: #FFFDC4;
  border: 2px solid var(--retro-yellow);
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 1px 7px var(--shadow);
}
.ask-a-question h3 {
  font-size: 1.19rem;
  color: var(--primary);
}

/* --- FORM ELEMENTS --- */
input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  background: #FFF7E9;
  transition: border .14s;
}
input:focus, textarea:focus {
  border-color: var(--accent);
}
label {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.02rem;
  margin-bottom: 3px;
  font-weight: 500;
}

/* --- MISC & UTILITIES --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-snippets ul, .milestones ul, .text-section ul {
  margin-left: 11px;
  list-style: square inside;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 22px;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0;
  font-size: 1.08rem;
  color: var(--primary);
}
.contact-data a {
  color: var(--primary);
  text-decoration: underline dotted;
}
.milestones {
  margin-top: 15px;
  padding-left: 10px;
  color: var(--retro-brown);
}
.booking-features {
  margin-top: 10px;
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #FCF3D2;
  border-top: 2.5px solid var(--retro-yellow);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px 18px 24px;
  z-index: 2500;
  box-shadow: 0 -4px 14px var(--shadow);
  gap: 22px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 13px;
}
.cookie-banner .btn {
  font-size: .98rem;
  padding: 7px 20px;
  border-radius: 11px;
  margin: 0 5px 0 0;
  box-shadow: 0 1px 4px var(--shadow);
}
.cookie-banner .btn-settings { background: var(--accent); color: #FFF7F1; border: 2px solid #298771; }
.cookie-banner .btn-settings:hover { background: #21836E; color: #F5FFC5; }

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed; z-index: 2600; left:0; top:0; width:100vw; height:100vh;
  background: rgba(70,60,33,0.32);
  display: none;
  align-items: center; justify-content: center;
  transition: opacity .26s;
}
.cookie-modal-backdrop.open { display: flex; }
.cookie-modal {
  background: #FFF7DE;
  border-radius: 25px;
  border: 3px solid var(--retro-yellow);
  box-shadow: 0 6px 32px var(--shadow);
  max-width: 420px;
  width: 90vw;
  padding: 42px 35px 30px 35px;
  position: relative;
  color: var(--text-dark);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 14px;
  font-size: 2rem;
  color: var(--danger);
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal h2 {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.43rem;
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFF0C9;
  border-radius: 9px;
  padding: 7px 10px;
  font-size: 1.01rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--primary);
  width: 19px;
  height: 19px;
}
.essential {
  color: #818166;
  font-style: italic;
  font-size: 0.96em;
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

/* --- RESPONSIVE DESIGN (MOBILE-FIRST) --- */
@media (max-width: 1130px) {
  .container { max-width: 98vw; }
  .feature-grid {justify-content: flex-start;}
}
@media (max-width: 900px) {
  .footer-contact { font-size: .98rem; }
  .feature-grid li,.values-list li{ min-width:160px; padding:18px 9px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .container { max-width: 99vw; }
  header .container { flex-wrap: wrap; gap: 7px; min-height: 54px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .footer-nav { flex-direction: column; gap: 7px; }
  .footer-contact { font-size: .96rem; }
  .feature-grid, .values-list { gap: 15px; }
  .card-container, .content-grid { gap: 13px; }
  .section, .cta, .testimonials { padding: 22px 3vw !important; border-radius: 10px; }
  .cta { margin: 40px 0 38px 0; }
  .testimonial-card { padding-left: 13px; padding-right: 13px; }
}
@media (max-width: 580px) {
  .footer-logo img {height:30px;}
  .footer-contact img{width:16px;height:16px;}
  .footer-copy { font-size: .90rem; }
  .section, .cta, .testimonials { padding: 13px 2vw !important; }
  .btn, .btn-primary, .btn-secondary {padding: 10px 20px; font-size: .98rem;}
  .feature-grid li, .values-list li{min-width:100px;padding:9px 4px;}
  .testimonial-card {font-size: .949rem;}
}
@media (max-width: 545px) {
  .footer-contact, .footer-nav { font-size: .95rem; }
}
@media (max-width: 990px) {
  .container { padding: 0 7px; }
}
@media (max-width: 650px) {
  .hero { padding-top: 24px; padding-bottom: 25px; }
  .cta { border-radius: 8px; }
  .testimonial-card { max-width: 96vw; }
  .card, .values-list li, .feature-grid li { min-width: 98px; padding: 8px 7px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Utility for spacing between cards/sections */
.card + .card, .testimonial-card + .testimonial-card, .section + .section, .feature-grid li + li, .values-list li + li {
  margin-top: 20px;
}

/* --- MICRO INTERACTIONS, ANIMATIONS --- */
.btn, .card, .testimonial-card, .feature-grid li, .mobile-menu, .mobile-menu-toggle, .mobile-nav a {
  transition: all .16s cubic-bezier(.54,.01,.79,1.08);
}

/* --- NO ABSOLUTE FOR CARDS, ONLY FOR DECORATIVE OR UI --- */

/* --- RETRO PATTERNS & NOSTALGIC ELEMENTS --- */
body {
  background: repeating-linear-gradient(114deg, #FFF8EE 0 54px, #F7D488 65px, #FFF8EE 74px);
}
.section {
  border: 2.5px dashed var(--retro-yellow);
  box-shadow: 0 3px 19px var(--shadow), 0 2px 6px #E4D4B3;
}
.card {
  background: repeating-linear-gradient(-55deg,#FCFAF7 0 80px,#FFF7EC 81px 117px,#FCFAF7 118px 150px);
}

/* --- HIDE MOBILE MENU BY DEFAULT --- */
.mobile-menu { display: flex; }

/* --- PRINT --- */
@media print { .mobile-menu,.cookie-banner,.cookie-modal-backdrop,header .btn,footer .footer-nav{display:none!important;}}
