/* --- 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;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #F5F6F8;
  color: #1E2B42;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  accent-color: #EBA63E;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #234270;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #EBA63E;
}


/* --- BRAND & PRIMARY COLORS --- */
:root {
  --color-primary: #234270;
  --color-secondary: #EBA63E;
  --color-accent: #F5F6F8;
  --color-ink: #1E2B42;
  --color-gold: #E5C67B;
  --color-gold-deep: #C19B41;
  --color-white: #fff;
  --color-black: #181818;
  --font-display: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  --font-body: 'Source Sans Pro', Arial, sans-serif;
  --radius-base: 18px;
  --shadow-base: 0 3px 20px 0 rgba(35,66,112,.09);
  --shadow-strong: 0 6px 32px 0 rgba(35,66,112,.16);
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.08rem;
  font-weight: 600;
}
p, li, strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-ink);
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
section ul, section ol {
  padding-left: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.text-section strong {
  font-size: 1.04rem;
  margin-bottom: 6px;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
}

/* Card layouts as Flex */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border: 1px solid #ece3d5;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px 22px 20px;
  transition: box-shadow .2s, transform .18s;
}
.card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.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;
}

/* --- HEADER NAVIGATION --- */
header {
  background: var(--color-white);
  border-bottom: 2px solid #efe6d4;
  box-shadow: 0 1px 16px 0 rgba(35,66,112,.03);
  z-index: 10001;
}
header .container {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 16px;
  justify-content: space-between;
}
header nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  text-decoration: none;
  position: relative;
}
header nav a.cta {
  background: var(--color-secondary);
  color: var(--color-black);
  border-radius: 22px;
  font-weight: 600;
  padding: 8px 22px;
  margin-left: 6px;
  box-shadow: 0 3px 10px 0 rgba(235,166,62,.06);
  border: none;
  transition: background .2s, box-shadow .18s;
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: var(--color-gold-deep);
  color: var(--color-white);
  box-shadow: 0 6px 20px 0 rgba(235,166,62,.18);
}
header nav a:hover,
header nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

header img {
  height: 48px;
  margin-right: 20px;
}

/* --- MOBILE NAV: BURGER MENU --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border: none;
  color: var(--color-black);
  font-size: 2rem;
  padding: 7px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(235,166,62,.07);
  cursor: pointer;
  margin-left: 18px;
  transition: background .15s, color .15s;
  z-index: 11010;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-gold);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  z-index: 11020;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.6,0,.6,1);
  box-shadow: 0 0 54px 0 rgba(35,66,112,.13);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  align-self: flex-end;
  border: none;
  background: none;
  color: var(--color-black);
  padding: 18px 25px 5px 0;
  cursor: pointer;
  z-index: 11040;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px 32px 32px;
  margin-top: 0;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 14px 0 14px 0;
  border-radius: 8px;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold-deep);
  background: #fcf8f3;
}

/* Hide nav for mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO, FEATURES, CTA --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
}
section h1, section h2, section h3 {
  color: var(--color-primary);
}
.section-intro {
  background: var(--color-primary);
  color: var(--color-white);
}

/* --- CARDS: RECIPES, TIPS, ETC. --- */
.recipe-card, .tip-card {
  background: var(--color-accent);
  border: 1.5px solid #f1e8d1;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 10px 0 rgba(35,66,112, .06);
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .13s;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
}
.recipe-card:hover, .tip-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px) scale(1.025);
}

/* --- BUTTONS / CTA --- */
.cta, .content-wrapper a.cta, .tip-card a.cta, .recipe-card a.cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  background: linear-gradient(90deg, #EBA63E 70%, #E5C67B 100%);
  color: var(--color-black);
  border-radius: 32px;
  padding: 11px 28px;
  box-shadow: 0 2px 10px 0 rgba(235,166,62,.07);
  letter-spacing: .01em;
  border: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: background .18s, color .15s, box-shadow .16s, transform .11s;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, #C19B41 70%, #EBA63E 100%);
  color: var(--color-white);
  box-shadow: 0 8px 20px -5px #EBA63E99;
  transform: translateY(-2px) scale(1.035);
}

/* --- FOOTER --- */
footer {
  background: #222C38;
  color: var(--color-accent);
  border-top: 2px solid #e7c57a;
  padding: 0 0 8px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 0 8px 0;
}
footer img {
  height: 42px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: #e7e5df;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  padding: 2px 0;
  transition: color .16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
footer .cta {
  margin: 4px 0 8px 0;
  padding: 7px 22px;
  background: #EBA63E;
  color: #222C38;
  font-size: 1rem;
  font-weight: 600;
  transition: background .13s, color .13s;
}
footer .cta:hover, footer .cta:focus {
  background: #C19B41;
  color: var(--color-white);
}
footer > .container > .content-wrapper > div {
  display: flex;
  gap: 15px;
  align-items: center;
}
footer > .container > .content-wrapper > p {
  color: #ccc;
  font-size: 0.93rem;
}

/* --- FEATURED LISTS AND ICON LISTS --- */
section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 16px;
}
section ul li,
.card-container li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 400;
  padding-left: 0;
}
section ul li img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff7e7;
}

/* --- PAGINATION --- */
nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
nav span {
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 3px 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
}
nav a:not(.cta) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--color-secondary);
  padding: 3px 10px;
  border-radius: 11px;
  transition: background .13s, color .13s;
}
nav a:not(.cta):hover,
nav a:not(.cta):focus {
  background: #ffe7b5;
  color: var(--color-primary);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-accent);
  border: 1.5px solid #EDD388;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(235,166,62,.08);
  position: relative;
  transition: box-shadow .16s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-strong);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--color-ink);
  font-style: italic;
}
.testimonial-card strong {
  font-size: 1.02rem;
  color: var(--color-gold-deep);
  padding-left: 7px;
  font-family: var(--font-display);
}

/* --- FORMS & INPUTS --- */
input[type="text"], input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #e9e2d1;
  box-shadow: 0 1px 6px 0 rgba(35,66,112,.06);
  margin-bottom: 12px;
  transition: border-color .16s, box-shadow .14s;
  width: 100%;
  background: #fffdfa;
  color: var(--color-ink);
}
input[type="text"]:focus, input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 2px 12px 0 #ffd38143;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-body);
  box-shadow: 0 -2px 24px 0 rgba(35,66,112,.19);
  padding: 25px 8vw 20px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 12000;
  gap: 24px;
  transition: transform .32s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(130%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-text {
  flex: 1 1 0;
  font-size: 1rem;
  color: #fff;
  margin-right: 18px;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cta {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 8px 20px;
  border: none;
  margin: 0;
  min-width: 120px;
  cursor: pointer;
  transition: background .13s, color .13s, box-shadow .11s;
}
.cookie-banner .accept {
  background: #EBA63E;
  color: #1C2026;
  box-shadow: 0 0 7px 0 rgba(235,166,62,.13);
}
.cookie-banner .accept:hover {
  background: #C19B41;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #234270;
  border: 1px solid #e9e2d1;
}
.cookie-banner .reject:hover {
  background: #fff7e1;
  color: #C19B41;
  border-color: #EBA63E;
}
.cookie-banner .settings {
  background: transparent;
  color: #EBA63E;
  border-bottom: 1.5px dashed #EBA63E;
  padding: 8px 0 !important;
  min-width: 0;
}
.cookie-banner .settings:hover {
  color: #fff;
  border-bottom: 1.5px solid #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,26,38, .61);
  z-index: 12020;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .23s;
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 6px 48px 0 rgba(35,66,112,.19);
  width: 94vw;
  max-width: 420px;
  padding: 38px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: fadeIn .35s;
}
.cookie-modal h3,
.cookie-modal h2 {
  color: var(--color-primary);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  font-family: var(--font-body);
}
.cookie-modal input[type=checkbox] {
  transform: scale(1.34);
  accent-color: #EBA63E;
  margin-right: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 14px;
}
.cookie-modal button, .cookie-modal .cta {
  border-radius: 38px;
  font-family: var(--font-display);
  font-weight: 700;
  background: #EBA63E;
  color: #1C2026;
  padding: 8px 25px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background .14s, color .14s;
}
.cookie-modal button.reject, .cookie-modal .reject {
  background: #fff;
  color: #234270;
  border: 1px solid #EBA63E;
}
.cookie-modal button.accept:hover, .cookie-modal .accept:hover {
  background: #C19B41;
  color: #fff;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* --- MISC CARD & FEATURE LAYOUTS --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border: 1px solid #f1e7d3;
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 #d2cccc16;
  padding: 21px 17px 16px 17px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 8px;
    min-width: 0;
  }
  .section, section {
    padding: 34px 5vw;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    min-height: 64px;
    gap: 0;
  }
  section, .section {
    padding: 23px 3vw;
    margin-bottom: 28px;
  }
  .container {
    padding: 0 3vw;
  }
  .content-wrapper, .text-image-section, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 9px;
  }
  footer .content-wrapper {
    gap: 13px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer nav {
    gap: 3px;
  }
  .mobile-nav {
    padding: 35px 14px 18px 18px;
    font-size: 1.05rem;
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 19px 4vw 19px 4vw;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .cookie-banner {
    font-size: 0.95rem;
    padding: 9px 2vw 12px 2vw;
  }
  .cookie-banner button, .cookie-banner .cta {
    font-size: .98rem;
    padding: 6px 13px;
  }
  .cookie-modal {
    padding: 26px 11px 18px 11px;
    width: 98vw;
  }
}

/* --- ACCESSIBILITY & MISC --- */
::-webkit-input-placeholder { color: #B8BFCB; font-style: italic; }
:-moz-placeholder { color: #B8BFCB; font-style: italic; }
::-moz-placeholder { color: #B8BFCB; font-style: italic; }
:-ms-input-placeholder { color: #B8BFCB; font-style: italic; } 
::placeholder { color: #B8BFCB; font-style: italic; }

img[alt], svg[alt] { outline: none; }

/* --- UTILITIES --- */
.mt-0    { margin-top: 0  !important; }
.mb-0    { margin-bottom: 0  !important; }
.mt-8    { margin-top: 8px  !important; }
.mb-8    { margin-bottom: 8px  !important; }
.mt-16   { margin-top: 16px !important; }
.mb-16   { margin-bottom: 16px !important; }
.gap-8   { gap: 8px   !important; }
.gap-16  { gap: 16px  !important; }
.gap-24  { gap: 24px  !important; }
.gap-32  { gap: 32px  !important; }

/* --- LUXURY/PREMIUM EFFECTS & DETAILS --- */
h1, h2, h3, .cta, .recipe-card, .tip-card, .testimonial-card, .card, section, header nav a.cta, .cookie-banner .accept, .cookie-banner .reject, .cookie-modal button, .cookie-modal .cta {
  box-shadow: 0 2px 9px 0 #fad78e18;
}
.card, .recipe-card, .tip-card, .testimonial-card {
  border: 1.5px solid #E5C67B;
}
.cta, .cookie-banner .accept, .cookie-modal button, .cookie-modal .cta {
  background: linear-gradient(90deg,#EBA63E 70%,#E5C67B 100%);
  color: #1E2B42;
  letter-spacing: .01em;
}
.cta:hover, .cookie-banner .accept:hover, .cookie-modal .accept:hover {
  background: #C19B41;
  color: #fff;
}

/* Micro-interactions for buttons/links */
.cta:active, .card:active, .recipe-card:active {
  filter: brightness(.97) saturate(.98);
  transform: scale(.985);
}
header nav a.cta:active {
  filter: brightness(.95);
}

/* Subtle golden underline for titles (luxury accent) */
h2, .section > h2, .content-wrapper > h2 {
  position: relative;
}
h2:after, .section > h2:after, .content-wrapper > h2:after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, #EBA63E 68%, #E5C67B 100%);
  border-radius: 2px;
  margin: 7px 0 0 0;
}

/* Decorative golden glow for hovered/focus cards */
.card:hover, .recipe-card:hover, .tip-card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 32px 0 #EBA63E33, 0 2px 9px 0 #fad78e18;
  border-color: #E5C67B;
}

/* --- END CSS --- */
