/* ==== 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;
  box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main {
  display: block;
}
body {
  line-height: 1.6;
  background: #ffffff;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #095267;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E6B13E;
}
ul {
  list-style: disc inside;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* ==== LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
  min-height: 450px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f7f6f2;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(9,82,103,0.03);
}
@media (max-width: 900px) {
  section {
    padding: 32px 10px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 18px 1px;
    margin-bottom: 34px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}

.text-section ul {
  margin-left: 1.2em;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #ECE8DC;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
header nav a {
  font-size: 1rem;
  color: #095267;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  font-family: 'Open Sans', Arial, sans-serif;
  text-decoration: none;
  transition: border 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #e6b13e;
  border-bottom: 2px solid #e6b13e;
}
header img {
  height: 44px;
  width: auto;
}
.cta.primary {
  background: #095267;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1.06rem;
  padding: 10px 30px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(9,82,103,0.09);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  display: inline-block;
  margin-left: 16px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #0e6984;
  color: #e6b13e;
}
.cta.secondary {
  background: #ECE8DC;
  color: #095267;
  border: 1.5px solid #095267;
  padding: 8px 26px;
  border-radius: 32px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #e6b13e;
  color: #095267;
  border-color: #e6b13e;
}

/* ==== MOBILE HEADER ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #095267;
  cursor: pointer;
  margin-left: 12px;
}
@media (max-width: 950px) {
  header nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #ECE8DC;
  box-shadow: 0 6px 32px rgba(9,82,103,0.17);
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 60px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #095267;
  align-self: flex-end;
  margin: 12px 24px 18px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #e6b13e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #095267;
  font-weight: 600;
  width: 100%;
  padding: 13px 0;
  text-align: center;
  border-radius: 17px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e6b13e;
  color: #fff !important;
}

@media (max-width: 950px) {
  .mobile-menu {
    display: flex;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(90deg, #ECE8DC 70%, #b1cbd2 100%);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 12px 32px rgba(9,82,103,.07);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
}
.hero h1 {
  font-size: 2.8rem;
  color: #095267;
  margin-bottom: 10px;
  line-height: 1.1;
}
.hero p {
  font-size: 1.18rem;
  color: #17485b;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero .cta.primary {
  margin-left: 0;
}
@media (max-width: 600px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 32px;
  }
  .hero .container {
    gap: 12px;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ==== FLEXBOX UTILITIES ==== */
.features-grid, .special-offer-grid, .service-list, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  row-gap: 24px;
}
@media (max-width: 900px) {
  .features-grid, .special-offer-grid, .service-list, .card-container, .card-grid, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .features-grid, .special-offer-grid, .service-list, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(9,82,103,0.09);
  padding: 22px 26px;
  transition: box-shadow .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(14,105,132,.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* ==== FEATURES ==== */
.features-grid .feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(9,82,103,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1 1 218px;
  min-width: 220px;
  max-width: 290px;
  padding: 28px 22px 22px 22px;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.13s;
  margin-bottom: 20px;
}
.features-grid .feature:hover, .features-grid .feature:focus {
  box-shadow: 0 12px 32px rgba(9,82,103,0.16);
  transform: translateY(-3px) scale(1.025);
}
.features-grid .feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 6px;
}
.features-grid .feature h3 {
  color: #095267;
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.features-grid .feature p {
  color: #2b3c3e;
  font-size: 1rem;
}

/* ==== SERVICE CARDS, SPECIAL OFFERS, SERVICE BRIEFS ==== */
.service-card, .service-brief {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(9,82,103,0.09);
  padding: 26px 18px;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-card:hover, .service-card:focus-within,
.service-brief:hover, .service-brief:focus-within {
  box-shadow: 0 8px 28px rgba(14,105,132,0.13);
  transform: translateY(-3px) scale(1.025);
}
.service-card h2,.service-brief h2,.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 3px;
  color: #095267;
}
.service-card p,.service-brief p {
  font-size: 1rem;
  color: #2b3c3e;
}
.service-card strong,.service-brief strong {
  color: #cb9500;
}

@media (max-width: 900px) {
  .service-card, .service-brief {
    min-width: 160px;
    padding: 20px 10px;
  }
}
@media (max-width: 600px) {
  .service-card, .service-brief {
    min-width: 0;
    width: 100%;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #1c2e2f;
  border-left: 6px solid #cb9500;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(9,82,103,0.06);
  padding: 20px;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  min-width: 0;
  max-width: 680px;
  transition: box-shadow 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(14,105,132,0.13);
}
.testimonial-card blockquote {
  color: #063640;
  font-size: 1.07rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.testimonial-card cite {
  color: #095267;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: normal;
  margin-left: 14px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px 10px;
  }
}

/* ==== FOOTER ==== */
footer {
  background: #ECE8DC;
  border-top: 1.5px solid #e5e6e2;
  padding: 30px 0 12px 0;
  margin-top: 32px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #17485b;
  font-size: 0.94rem;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #e6b13e;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 31px;
}
.footer-brand span {
  font-size: 0.94rem;
  color: #095267;
  font-family: 'Open Sans', Arial, sans-serif;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===== CONTENT COMPONENTS ===== */
.booking-info, .contact-short, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ECE8DC;
  border-radius: 9px;
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 0.99rem;
  box-shadow: 0 2px 8px rgba(9,82,103,.04);
}
.contact-short strong, .contact-info strong, .booking-info strong {
  font-weight: 700;
  color: #095267;
}

.contact-suggestion {
  margin-top: 28px;
  background: #ECE8DC;
  padding: 16px;
  border-radius: 12px;
  color: #185669;
  box-shadow: 0 2px 10px rgba(16,92,111,0.04);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item h2 {
  font-size: 1.18rem;
  margin-bottom: 4px;
  color: #095267;
}
.faq-item p {
  font-size: 1rem;
  color: #2b3c3e;
}

/* General spacing between content-wrapper children */
.content-wrapper > * {
  margin-bottom: 20px;
}
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* ==== TYPOGRAPHY ==== */
body, .text-section, .faq-item, .feature, .service-card, .service-brief, .booking-info, .contact-short, .testimonial-card, .contact-info {
  font-family: 'Open Sans', Arial, sans-serif;
}
.display, h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
}

h1, .display {
  letter-spacing: -0.01em;
}
h2 {
  letter-spacing: 0;
}
p, ul, li, blockquote, cite {
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 1em;
}
ul {
  margin-bottom: 1em;
}

strong {
  color: #cb9500;
}

@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.16rem; }
  h3 { font-size: 1.05rem; }
  p, li, blockquote, cite { font-size: 0.97rem; }
}

/* ==== BUTTONS ==== */
button,
.cta.primary,
.cta.secondary {
  font-family: 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  outline: none;
}
button:focus-visible {
  outline: 2px solid #e6b13e;
  outline-offset: 3px;
}
/* Hide default button styles for action icon */
button {
  background: none;
  border: none;
}

/* ==== ANIMATIONS / TRANSITIONS ==== */
.card, .service-card, .service-brief, .testimonial-card, .features-grid .feature {
  transition: box-shadow 0.19s, transform 0.14s;
}
.cta.primary, .cta.secondary {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.mobile-menu, .mobile-menu-close, .mobile-nav a {
  transition: transform 0.37s, color 0.18s, background 0.17s;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #ECE8DC;
  color: #222;
  box-shadow: 0 -2px 18px rgba(9,82,103,0.11);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  gap: 24px;
  font-size: 0.98rem;
  flex-wrap: wrap;
  transition: transform 0.37s cubic-bezier(0.4,0,0.2,1), opacity 0.30s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 9px 20px;
  margin: 0 3px;
  border: none;
  box-shadow: 0 2px 8px rgba(9,82,103,0.06);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: #095267;
  color: #fff;
}
.cookie-banner .accept:hover { background: #0e6984; color: #e6b13e; }
.cookie-banner .reject {
  background: #ECE8DC;
  color: #095267;
  border: 1.5px solid #095267;
}
.cookie-banner .reject:hover {
  background: #e6b13e;
  color: #fff;
}
.cookie-banner .settings {
  background: #ECE8DC;
  color: #095267;
  border: 1.5px solid #095267;
}
.cookie-banner .settings:hover { background: #e6b13e; color: #fff; }

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(9,82,103,0.32);
  z-index: 1300;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, visibility 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #17485b;
  border-radius: 16px;
  padding: 36px 30px 24px 30px;
  max-width: 420px;
  min-width: 260px;
  box-shadow: 0 6px 40px rgba(9,82,103,0.19);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.15rem;
  color: #095267;
  margin-bottom: 10px;
}
.cookie-modal .category-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 9px 0;
}
.cookie-modal .category-toggle input[type="checkbox"] {
  accent-color: #095267;
  width: 19px;
  height: 19px;
}
.cookie-modal .category-toggle label {
  font-size: 1.01rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 24px;
  top: 18px;
  background: none;
  border: none;
  color: #095267;
  font-size: 1.33rem;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:focus,
.cookie-modal .close-cookie-modal:hover { color: #e6b13e; }

/* ===== MISC ===== */
::-webkit-scrollbar {
  width: 10px;
  background: #ECE8DC;
}
::-webkit-scrollbar-thumb {
  background: #c7d7e1;
  border-radius: 6px;
}

::selection {
  background: #e6b13e20;
}

/* Form controls for preferences (if added) */
input, select, textarea {
  border: 1px solid #5b8399;
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fafbfa;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.15s;
}
input:focus, select:focus, textarea:focus {
  border: 1.6px solid #095267;
}

/* Hide visually unnecessary elements on print */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
}

/* ===== SCANDINAVIAN CLEAN EFFECT: NO EXCESS SHADOWS OR GRADIENTS ===== */
/* Only gentle, subtle shadows for depth. Gentle color palette. */

/* ===== END ===== */
