/* ===================================================================
   LUXURY PREMIUM THEME – FEATHERY JOURNEY MASKINUTHYRNING
   Robust, modern, premium feel with gold accents
   All layouts via FLEXBOX ONLY – NO GRID/NO COLUMNS
   =================================================================== */

/* === CSS RESET & BASE ==== */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F7FFF7; /* accent background */
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C2963B;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}

/* ================== VARIABLES/FONTS */
:root {
  --brand-primary: #1D3557;
  --brand-secondary: #E9C46A;
  --brand-accent: #F7FFF7;
  --brand-gold: #C2963B;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-lg: 0 4px 32px rgba(30,30,30,0.09);
  --shadow-card: 0 2px 8px rgba(49, 40, 10, 0.07);
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Regular'), local('Roboto-Regular');
}

/* ================= CONTAINER & WRAPPERS =================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ================= SECTIONS/SPACING =================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 768px) {
  section, .section {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ==================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #1D3557;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.25rem;
}
p, li {
  font-size: 1rem;
  color: #222;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
}
@media (min-width: 1100px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.66rem; }
}

/* ==================== BUTTONS ====================== */
.btn-primary {
  appearance: none;
  background: linear-gradient(90deg, #E9C46A 0%, #C2963B 100%);
  color: #1D3557;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 13px 34px;
  border: none;
  box-shadow: 0 2px 9px rgba(30,30,30,0.08);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
  border: 2px solid transparent;
  margin-right: 18px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #C2963B 20%, #E9C46A 100%);
  color: #293047;
  box-shadow: 0 6px 18px rgba(30,30,30,0.11);
  outline: none;
  border: 2px solid #C2963B;
}

.btn-secondary {
  background: #fff;
  color: #1D3557;
  border-radius: 24px;
  border: 2px solid #E9C46A;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F8EEC6;
  color: #C2963B;
  border-color: #C2963B;
}

/* ============ HEADER, NAVIGATION & HAMBURGER =============== */
header {
  background: #fff;
  border-bottom: 1px solid #F4EAD7;
  box-shadow: 0 2px 10px rgba(30,30,30,0.04);
  margin-bottom: 0;
  z-index: 50;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  flex: 1;
  margin-left: 38px;
}
.main-nav a {
  font-family: var(--font-display);
  color: #1D3557;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.005em;
  position: relative;
  padding: 3px 0;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: #C2963B;
}
.main-nav a.active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #C2963B;
  border-radius: 3px;
}
header img[alt*='logo'] {
  height: 42px;
  width: auto;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1D3557;
  margin-left: 16px;
  cursor: pointer;
  display: none;
  z-index: 140;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #C2963B;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== MOBILE MENU SLIDEOVER ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 85vw;
  max-width: 340px;
  background: #fff;
  box-shadow: -4px 0 28px rgba(40,30,10,0.11);
  z-index: 201;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(.82,.01,.31,.99);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 20px 16px 20px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #1D3557;
  align-self: end;
  margin-bottom: 24px;
  cursor: pointer;
  z-index: 250;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #C2963B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: start;
  margin-bottom: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.19rem;
  color: #1D3557;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.17s;
  padding: 6px 0;
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: #C2963B;
}
/* Mobile nav covers the entire screen for focus */
.mobile-menu::before {
  content: '';
  position: fixed;
  z-index: -2;
  inset: 0 0 0 0;
  background: rgba(40,34,23,0.21);
}

/* ========== HERO/HEADING/CALL TO ACTION SPACING ======= */
.hero, .content-wrapper > h1 {
  background: none;
  font-family: var(--font-display);
  color: #1D3557;
  margin-top: 0;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .content-wrapper > h1 {
    margin-bottom: 10px;
  }
}

/* =================== FEATURES / USPs LISTS =========== */
.content-wrapper ul, .content-wrapper ol {
  margin-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-wrapper ul li, 
.content-wrapper ol li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
  background: rgba(233,196,106,0.07);
  color: #1D3557;
  border-radius: 12px;
  padding: 14px 20px 14px 16px;
  margin-bottom: 0;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(49,40,10,0.027);
  border-left: 4px solid #E9C46A;
  position: relative;
}
.content-wrapper ul li img, .content-wrapper ol li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 12px;
}
/* For small bullet list (text-only) */
.text-section ul li {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0 0 0 16px;
  box-shadow: none;
  color: #26324b;
}

/* ============== CTA/Contact Short Banner =============== */
.contact-short {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  background: #fffbe6;
  padding: 17px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(196,150,59,0.09);
  font-size: 1.1rem;
}
.contact-short img {
  width: 26px;
  height: 26px;
}

/* ============= TESTIMONIALS ============== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(30,28,18,0.10);
  padding: 20px;
  margin-bottom: 20px;
  min-height: 64px;
  position: relative;
  border: 1.5px solid #F4EAD7;
  font-size: 1.08rem;
  font-style: italic;
  font-family: var(--font-body);
}
.testimonial-card strong {
  font-size: 0.97rem;
  color: #1D3557;
  font-weight: 600;
  font-family: var(--font-display);
  font-style: normal;
  margin-left: 18px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px 12px;
  }
  .testimonial-card strong {
    margin-left: 0;
  }
}

/* ============= FOOTER ============= */
footer {
  background: #1D3557;
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
.footer-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-columns > div, .footer-nav, .footer-contact {
  flex: 1 1 200px;
  min-width: 160px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 10px;
}
.footer-nav a {
  color: #E9C46A;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 3px;
  font-family: var(--font-body);
}
footer img[alt*='logo'] {
  height: 40px;
  width: auto;
  filter: brightness(1.4) saturate(1.05);
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}

/* ============== FLEXBOX PATTERNS FOR LAYOUTS ============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  border: 1.25px solid #E9C46A22;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* ============== FORMS and LINKS ============== */
input, textarea, select {
  font-family: var(--font-body);
  border-radius: 8px;
  border: 1.2px solid #E9C46A;
  padding: 10px 14px;
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #E9C46A;
  border-color: #C2963B;
}

/* ================= TRANSITIONS, EFFECTS, HOVER =============== */
.card, .testimonial-card, .btn-primary, .btn-secondary {
  transition: box-shadow 0.17s, border-color 0.16s, background 0.22s;
}
.card:hover {
  box-shadow: 0 7px 22px 0 rgba(196,150,59,0.13);
  border-color: #E9C46A;
  z-index: 2;
}

/* Micro-interaction for icons */
.content-wrapper ul li img, .content-wrapper ol li img {
  transition: transform 0.21s cubic-bezier(.87,-0.03,0,1.11);
}
.content-wrapper ul li:hover img, .content-wrapper ol li:hover img {
  transform: scale(1.12) rotate(-6deg);
}

/* Highlight links/CTA underline */
a.btn-primary:hover, .btn-primary:focus {
  text-decoration: none;
}

/* ============== MEDIA QUERIES =============== */
@media (max-width: 600px) {
  .content-wrapper {
    gap: 15px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .contact-short {
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px;
  }
}

/* ============== COOKIE CONSENT =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe6;
  color: #222;
  z-index: 9999;
  box-shadow: 0 -2px 22px rgba(30,22,10,0.14), 0 -1.5px 0 #E9C46A;
  padding: 26px 32px 26px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.34s cubic-bezier(.88,.01,.1,.99), opacity 0.31s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 auto;
  max-width: 520px;
  color: #222;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 20px;
  background: #E9C46A;
  color: #1D3557;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #C2963B;
  border: 2px solid #E9C46A;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #F8EEC6;
  color: #1D3557;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #C2963B;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 17px 10px 15px 10px;
    border-radius: 16px 16px 0 0;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 7px;
    align-items: stretch;
    width: 100%;
  }
}

/* ======= COOKIE MODAL DIALOG ====== */
.cookie-modal-bg {
  position: fixed;
  z-index: 10011;
  inset: 0;
  background: rgba(29,53,87,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffbe6;
  color: #1d3557;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(29,53,87,0.11);
  min-width: 330px;
  max-width: 96vw;
  padding: 38px 34px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: transform 0.25s, opacity 0.23s;
  max-height: 88vh;
  overflow-y: auto;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #1D3557;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-modal label {
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #E9C46A;
  width: 19px;
  height: 19px;
}
.cookie-modal .btn-row {
  margin-top: 19px;
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.cookie-modal .btn-row button {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 20px;
  background: #E9C46A;
  color: #1D3557;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .btn-row button.secondary {
  background: #fff;
  color: #C2963B;
  border: 2px solid #E9C46A;
}
.cookie-modal .btn-row button.secondary:hover,
.cookie-modal .btn-row button.secondary:focus {
  background: #F8EEC6;
  color: #1D3557;
}
.cookie-modal .btn-row button:hover,
.cookie-modal .btn-row button:focus {
  background: #C2963B;
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 15px 7px 18px 11px;
    border-radius: 13px;
  }
}

/* ===================== UTILITIES ======================= */
.hide { display: none !important; }
.flex { display: flex !important; }
.gap-20 { gap: 20px !important; }
.gap-30 { gap: 30px !important; }
.centered { justify-content: center; align-items: center; }
.text-center { text-align: center; }
.text-gold { color: #C2963B; }
.bg-gold { background: #E9C46A; }
.b-radius-md { border-radius: 16px; }

/* ===================== ACCESSIBILITY ==================== */
:focus {
  outline: 2.2px solid #E9C46A;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #b7b7b7; }
::-moz-placeholder { color: #b7b7b7; }
:-ms-input-placeholder { color: #b7b7b7; }
::placeholder { color: #b7b7b7; }

/* ===================== PRINT ==================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-bg { display: none !important; }
  body { background: #fff !important; color: #222 !important; }
}
