/* --------------------------------------------------
   CSS RESET & BASELINE (Normalize / Reset)
--------------------------------------------------- */
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;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  background: #FAF5F0;
  color: #254E70;
  min-height: 100vh;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a {
  color: #254E70;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #F09D51;
  outline: none;
}

ul, ol {
  list-style: none;
}
/* Typography Scale */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: .03em;
  margin-bottom: 18px;
  line-height: 1.12;
  text-transform: uppercase;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}
p, li, label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.subheadline, .section .subheadline {
  font-size: 1.125rem;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #3B3B3B;
}

/* ---------------------------
   Layout Containers & Spacing
----------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(37,78,112,0.06);
  background: #fff;
  transition: box-shadow 0.18s cubic-bezier(.65,.05,.36,1);
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(240, 157, 81, .22), 0 2px 18px rgba(37,78,112,.13);
  z-index: 2;
}
.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;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  border-left: 6px solid #F09D51;
  box-shadow: 0 1.5px 10px rgba(37,78,112,.08);
  transition: transform 0.14s, box-shadow 0.14s;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 8px 24px rgba(37,78,112,.12);
}
.testimonial-card p {
  color: #254E70;
  font-size: 1.1rem;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F09D51;
  font-size: .98rem;
  font-weight: 600;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO Section */
.hero {
  min-height: 340px;
  padding: 36px 0 24px 0;
  background: linear-gradient(90deg, #FAF5F0 72%, #F09D51 10%);
  border-radius: 0 0 44px 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: #254E70;
  text-shadow: 0 1px 0 #fff, 0 2px 7px rgba(37,78,112,.07);
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #3B3B3B;
  max-width: 590px;
}

/* ----------
   Navigation
----------- */
header {
  padding: 0;
  background: #fff;
  position: relative;
  z-index: 40;
  box-shadow: 0 4px 18px rgba(37,78,112,0.03);
}
header .logo {
  display: inline-flex;
  align-items: center;
  padding: 14px 0 14px 12px;
}
header .logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: none;
}
header .cta-btn {
  display: inline-flex;
}

/* ------ Burger/mobile menu button ------- */
.mobile-menu-toggle {
  display: inline-block;
  background: none;
  border: none;
  font-size: 2rem;
  color: #254E70;
  cursor: pointer;
  margin-left: auto;
  margin-right: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F09D51;
  color: #fff;
  outline: none;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #254E70;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.9,.01,.25,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 18px 22px 6px 14px;
  cursor: pointer;
  align-self: flex-end;
  margin: 0 0 14px 0;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F09D51;
  color: #fff;
  border-radius: 8px;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0 26px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: 14px 6px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
  font-weight: 600;
}
.mobile-nav a.cta-btn {
  background: #F09D51;
  color: #fff;
  text-align: center;
  margin-top: 18px;
  border-radius: 12px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F09D51;
  color: #fff;
  outline: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-left: 34px;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 12px;
    letter-spacing: .01em;
    transition: background 0.15s, color 0.15s;
    text-transform: uppercase;
  }
  .main-nav a.cta-btn {
    background: #F09D51;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(240, 157, 81, .10);
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 20px;
    transition: background .17s, color .17s, box-shadow .18s;
  }
  .main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
    background: #254E70;
    color: #fff;
    box-shadow: 0 7px 18px rgba(37,78,112, .08);
  }
  .main-nav a:hover, .main-nav a:focus {
    background: #254E70;
    color: #F09D51;
    outline: none;
  }
  .mobile-menu-toggle { display: none; }
}

/*
=========================
 RESPONSIVE CONTAINERS
========================= */
@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px;
  }
}
/* Section specific grid implementations */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin-bottom: 10px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 200px;
  background: #fff;
  border-radius: 15px;
  padding: 22px 18px 19px 22px;
  box-shadow: 0 1.5px 8px rgba(37,78,112,.08);
  gap: 10px;
  margin-bottom: 0;
}
.feature-grid li img {
  width: 44px;
  margin-bottom: 8px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  margin-bottom: 26px;
}
.services-list li {
  flex: 1 1 210px;
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 15px;
  margin-bottom: 0;
  box-shadow: 0 1.5px 8px rgba(37,78,112,.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 5px solid #254E70;
  position: relative;
}
.service-price {
  color: #F09D51;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  align-self: flex-end;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  padding: 13px 16px 12px 13px;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(37,78,112,.07);
}
.value-list img {
  height: 28px;
}

/* Blog list */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.blog-post-list article {
  flex: 1 1 260px;
  min-width: 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(37,78,112,0.08);
  padding: 18px 15px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.popular-tags span {
  background: #254E70;
  color: #fff;
  font-size: .98rem;
  border-radius: 20px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/******************
   Buttons & CTA
*******************/
.cta-btn {
  display: inline-block;
  background: #254E70;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 13px 26px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: none;
  border-radius: 18px 36px 18px 36px;
  box-shadow: 0 8px 24px rgba(240, 157, 81, 0.09);
  cursor: pointer;
  margin-top: 12px;
  transition: background .18s cubic-bezier(.45,0,.58,1), color .14s, box-shadow .14s, transform .13s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F09D51;
  color: #fff;
  box-shadow: 0 14px 36px rgba(37,78,112,0.09);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/*************************
   SECTION: Step By Step
*************************/
.step-by-step {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 22px;
  margin: 20px 0 32px 0;
}
.step-by-step li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(37,78,112,0.08);
  padding: 18px 14px 16px 18px;
  flex: 1 1 230px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  border-left: 5px solid #F09D51;
  position: relative;
}
.step-by-step li img {
  height: 40px;
}
.step-by-step li strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/***************************
 Newsletter, Footer Styles
****************************/
footer {
  background: #254E70;
  color: #fff;
  padding: 0 0 20px 0;
  margin-top: 36px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.footer-nav a {
  color: #F09D51;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline dotted;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  outline: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}
.brand-footer img {
  height: 36px;
  margin-bottom: 10px;
}
.footer-contact ul {
  margin-top: 5px;
  padding-left: 0;
}
.footer-contact li {
  font-size: .98rem;
  line-height: 1.4;
  margin-bottom: 2px;
  color: #fff;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 21px;
}
.footer-social img {
  height: 32px;
}
.footer-newsletter {
  background: #fff;
  color: #254E70;
  font-size: 1rem;
  border-radius: 13px;
  padding: 17px 18px 16px 18px;
  margin-top: 20px;
  min-width: 240px;
  box-shadow: 0 2px 9px rgba(37,78,112, 0.07);
}
.footer-newsletter h3 {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #254E70;
  font-weight: 700;
  margin-bottom: 5px;
}
.footer-newsletter p {
  color: #254E70;
  font-size: .97rem;
}

/***************************
 OTHER UI ELEMENTS & UTILS
****************************/
.occasion-filters ul,
.recipient-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 16px;
}
.occasion-filters li,
.recipient-filters li {
  background: #254E70;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  padding: 8px 18px;
  border-radius: 16px 6px;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.occasion-filters li:hover,
.occasion-filters li:focus,
.recipient-filters li:hover,
.recipient-filters li:focus {
  background: #F09D51;
  color: #254E70;
  outline: none;
}
.suggested-gifts ul, .trendy-gifts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 12px;
}
.suggested-gifts li, .trendy-gifts li {
  background: #fff;
  border-radius: 14px;
  padding: 7px 16px;
  color: #254E70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  box-shadow: 0 1.5px 8px rgba(37,78,112,.07);
}

.pricing-summary {
  background: #fffbe8;
  border-left: 5px solid #F09D51;
  padding: 20px 20px 17px 22px;
  border-radius: 15px;
  margin: 32px 0 7px 0;
  box-shadow: 0 1.5px 8px rgba(37,78,112,.08);
}
.pricing-summary h4 {
  font-size: 1.13rem;
  color: #254E70;
  margin-bottom: 9px;
}

.short-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.address-info, .map-snippet, .directions, .transport-hints {
  margin-bottom: 16px;
}
.address-info p, .map-snippet p, .directions ul, .transport-hints p {
  font-size: 1rem;
  margin-bottom: 6px;
}
.directions ul {
  gap: 8px;
}
.next-steps-info ul {
  margin: 10px 0 15px 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.next-steps-info li {
  list-style: disc inside;
  font-size: 1rem;
}

/*********************************
 Cookie Consent Banner & Modal UI
**********************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: #fff;
  color: #254E70;
  box-shadow: 0 -4px 19px rgba(37,78,112,0.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px 22px 22px;
  align-items: center;
  width: 100%;
  animation: cb-slide-up 0.6s cubic-bezier(.64,.01,.35,1);
}
@keyframes cb-slide-up {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.03rem;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 7px;
}
.cookie-btn {
  background: #254E70;
  color: #fff;
  border: none;
  border-radius: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
  font-weight: 700;
  padding: 10px 22px;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .16s;
  box-shadow: 0 2px 15px rgba(37,78,112,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F09D51;
  color: #254E70;
  outline: none;
}
.cookie-btn.reject {
  background: #fff;
  color: #254E70;
  border: 1.5px solid #F09D51;
}
.cookie-btn.reject:hover {
  background: #F09D51;
  color: #fff;
}
.cookie-btn.settings {
  background: #F09D51;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #254E70;
  color: #fff;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,78,112,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: cb-fade-in 0.45s;
}
@keyframes cb-fade-in {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 32px 18px 28px 24px;
  width: 92%;
  max-width: 380px;
  box-shadow: 0 7px 38px rgba(37,78,112,.16);
  color: #254E70;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  animation: cb-modal-in 0.34s cubic-bezier(.48,0,.54,1.4);
}
@keyframes cb-modal-in {
  from { opacity: 0; transform: scale(.9);}
  to   { opacity: 1; transform: scale(1);}
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: #254E70;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #F09D51;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F09D51;
  color: #fff;
}
/* Categories in Cookie Modal */
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 12px 0 8px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #254E70;
}
.cookie-category input[type='checkbox'] {
  accent-color: #F09D51;
  width: 19px;
  height: 19px;
  border-radius: 7px;
  margin-right: 0;
}
.cookie-category .locked {
  display: inline-block;
  color: #aaa;
  font-size: .96em;
  margin-left: 3px;
}

/*************************
  Responsive / Mobile First
**************************/

@media (max-width: 960px) {
  .feature-grid, .services-list, .blog-post-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-newsletter {
    min-width: 100%;
  }
}
@media (max-width: 800px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 30px 11px;
  }
  .footer-newsletter {
    min-width: 0;
  }
  .footer-social img {
    height: 26px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .services-list, .blog-post-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .card, .feature-grid li, .services-list li, .testimonial-card, .step-by-step li, .blog-post-list article {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .footer-newsletter {
    margin-right: 0;
  }
  .footer-contact, .footer-newsletter, .footer-nav, .footer-social {
    width: 100%;
    flex: 0 0 auto;
    margin-right: 0;
  }
  footer .content-wrapper {
    gap: 22px;
    flex-direction: column;
  }
  .section {
    padding: 18px 7px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .short-cta {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width:480px) {
  html {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  .section {
    padding: 9px 3px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 11vw;
  }
  .feature-grid li, .services-list li, .blog-post-list article, .step-by-step li {
    padding: 13px 7px 13px 12px;
  }
}

/*********************
  Geometric Decoration
**********************/
/* Subtle geometric corner effect (optional) */
.card, .feature-grid li, .services-list li, .blog-post-list article, .step-by-step li, .footer-newsletter {
  border-radius: 18px 42px 14px 22px;
}

/****************
  Utility Classes
*****************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.content-grid > * {
  flex: 1 1 220px;
  min-width: 180px;
}

::-webkit-scrollbar {
  width: 9px;
  background: #FAF5F0;
}
::-webkit-scrollbar-thumb {
  background: #F09D51;
  border-radius: 8px;
}

/* Required: NO grid or columns CSS used anywhere */