/* ============================================================
   CSS RESET & BASELINE 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 {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}
table {border-collapse: collapse; border-spacing: 0;}
img {max-width: 100%; display: block;}
a {color: inherit; text-decoration: none;}

/* ============================================================
   BRAND COLORS & TYPOGRAPHY (CREATIVE ARTISTIC)
   ============================================================ */
:root {
  --primary: #171F26;
  --secondary: #B6A07C;
  --accent: #F6F7F9;
  --creative-accent1: #fd5c60;
  --creative-accent2: #5fa8d3;
  --creative-accent3: #ffb542;
  --creative-accent4: #7bd389;
  --creative-shadow: rgba(23, 31, 38, 0.1);
  --creative-radius: 22px;
  --creative-radius-sm: 10px;
  --hero-gradient: linear-gradient(110deg, #F6F7F9 60%, #ffb542 110%);
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Playfair Display Bold'), url('https://fonts.gstatic.com/s/playfairdisplay/v22/nuFiD-vYSZviVYUb_rj3ij__anPXDTzM51L6.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Lato'), url('https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWA.ttf') format('truetype');
}

body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: var(--accent);
  color: var(--primary);
  font-size: 16px;
  line-height: 1.8;
  min-height: 100vh;
  overscroll-behavior: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {font-size: 2.8rem; line-height: 1.125; font-weight: 700; letter-spacing: -2px;}
h2 {font-size: 2rem; font-weight: 700;}
h3 {font-size: 1.4rem; font-weight: 700;}

@media (max-width: 520px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.3rem;}
  h3 {font-size: 1.13rem;}
}

p,li,address {
  color: var(--primary);
  margin-bottom: 13px;
  font-size: 1rem;
}

strong {font-weight: 700;}

.subheadline {
  color: var(--creative-accent2);
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   CONTAINER & LAYOUTS (FLEXBOX ONLY)
   ============================================================ */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 900px) {
  .container {max-width: 100%;}
}

.section {margin-bottom: 60px; padding: 40px 20px;}
.card-container {display: flex; flex-wrap: wrap; gap: 24px;}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--creative-radius);
  box-shadow: 0 2px 16px 0 var(--creative-shadow);
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}
.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: stretch; gap: 20px;}
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--creative-radius-sm);
  box-shadow: 0 1px 8px 0 rgba(23,31,38,0.10);
  margin-bottom: 24px;
  border-left: 6px solid var(--creative-accent1);
  max-width: 610px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}
.feature-grid > div {
  flex: 1 1 190px;
  min-width: 210px;
  max-width: 250px;
  background: #fff;
  border-radius: var(--creative-radius-sm);
  box-shadow: 0 3px 12px 0 var(--creative-shadow);
  padding: 26px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 4px solid var(--creative-accent3);
  transition: transform 0.18s cubic-bezier(.4,2.2,.34,1), box-shadow 0.18s;
}
.feature-grid > div:hover {
  transform: translateY(-7px) scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 24px -3px var(--creative-shadow) , 0 4px 12px -4px var(--primary);
  border-bottom: 4px solid var(--creative-accent4);
}
.feature-grid img {height: 38px; margin-bottom: 8px;}

.marque-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 24px 0 18px 0;
}
.marque-logos img {height: 40px; width: 40px; filter: grayscale(0.3) brightness(0.9);transition: filter 0.2s;}
.marque-logos img:hover {filter: none;}

.story-block {
  background: #fff;
  border-radius: var(--creative-radius-sm);
  padding: 28px 20px;
  box-shadow: 0 2px 10px 0 rgba(23,31,38,0.06);
  margin-bottom: 20px;
  border-left: 4px solid var(--creative-accent2);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px; }
  .feature-grid > div{
    min-width: 170px; max-width: 100%;}
}
@media (max-width: 650px) {
  .feature-grid {flex-direction: column;}
}


/* Hero Section */
.hero {
  min-height: 390px;
  padding: 0;
  background: var(--hero-gradient);
  display: flex;
  align-items: stretch;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  box-shadow: 0 15px 36px -12px rgba(181,169,124, 0.13);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.hero .container {
  min-height: 390px; justify-content: center; align-items: flex-start; gap: 0;
}
.hero .content-wrapper.text-section {
  padding: 54px 0 44px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.hero h1 {
  color: var(--creative-accent1);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 1px rgba(251,209,60,0.1),0px 3px 8px rgba(181,169,124,0.07);
  letter-spacing: -0.5px;
}
.hero p.subheadline {
  color: var(--primary);
  font-size: 1.19rem;
  font-weight: 400;
  font-style:normal;
}

/* MAIN NAV & HEADER (FLEX ONLY) */
header {
  position: relative;
  background: #fff;
  box-shadow: 0 3px 16px -3px var(--creative-shadow);
  z-index: 40;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 10px 20px;
  font-size: 1.06rem;
  font-family: 'Lato', Arial, sans-serif;
  background: none;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .main-nav {gap: 8px;}
}
.main-nav > a {
  position: relative;
  padding: 7px 13px;
  margin: 0 2px;
  border-radius: 8px;
  color: var(--primary);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-weight: 500;
}
.main-nav > a.cta-button {
  background: var(--creative-accent1);
  color: #fff;
  margin-left: auto;
  margin-right: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border-radius: 14px;
  padding: 7px 22px;
  box-shadow: 0 2px 10px 0 rgba(253,92,96,0.08);
  border: none;
}
.main-nav > a:hover, .main-nav > a.active {
  background: var(--creative-accent2);
  color: #fff;
}
.main-nav > a.cta-button:hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 14px 0 rgba(182,160,124, 0.13);
}
.main-nav > a img {
  height: 35px;
  margin-right: 20px;
}

/* Hide main desktop nav on mobile */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
}

/* ============================================================
   MOBILE BURGER MENU (W/SLIDE ANIMATION)
   ============================================================ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 99;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 4px 18px;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 420px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 28px 5px var(--secondary);
  transform: translateX(120%);
  transition: transform 0.29s cubic-bezier(.7,1.8,.5,0.85);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 40px 28px 20px 28px;
  gap: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 16px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--creative-accent1);
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.15s;
  padding: 0 9px;
}
.mobile-menu-close:hover {background: var(--creative-accent2); color: #fff;}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 10px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  font-family: 'Lato', sans-serif;
  padding: 10px 2px 10px 4px;
  border-radius: 7px;
  font-weight: 600;
  text-align: left;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--creative-accent1);
  color: #fff;
}

/* MOBILE MENU OVERLAY, CLOSURE Z-INDEX, FULL SCREEN */
.mobile-menu {
  box-shadow: -10px 0 40px 14px rgba(23,31,38,0.13);
}

@media (max-width:600px) {
  .mobile-menu {
    max-width: 99vw;
    width: 100vw;
    padding: 40px 14px;
  }
}

/* ============================================================
   CTA/STYLISH BUTTONS
   ============================================================ */
.cta-button, .cookie-consent-banner button,
.cookie-modal-actions button {
  display: inline-block;
  background: var(--creative-accent1);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 12px 34px;
  border: none;
  border-radius: 21px;
  box-shadow: 0 2px 16px 0 rgba(253,92,96,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  letter-spacing: 0.01em;
  margin-top: 18px;
  cursor: pointer;
}
.cta-button:hover, .cookie-consent-banner button:hover,
.cookie-modal-actions button:hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 20px 0 rgba(182,160,124,0.17);
  transform: translateY(-2px) scale(1.04);
}

/* ACCENT STYLES FOR ARTISTIC/ELEMENTS */
.cta-final .cta-button, .cta-experience .cta-button {
  background: var(--creative-accent2); color: #fff;}
.cta-final .cta-button:hover, .cta-experience .cta-button:hover {
  background: var(--creative-accent4); color: var(--primary);}

/* ============================================================
   SPACING CONSISTENCY & FLEX-GAP PATTERN
   ============================================================ */
.content-wrapper, .text-section {
  width: 100%;
  background: white;
  border-radius: var(--creative-radius);
  padding: 38px 36px;
  box-shadow: 0 2px 16px 0 var(--creative-shadow);
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .content-wrapper, .text-section {
    padding: 22px 10px;
  }
}

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

/* lists */
ul, ol {
  margin-bottom: 22px;
  margin-left: 16px;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 7px;
  position: relative;
}
ul li:before, .feature-grid ul li:before {
  content: "\2605 ";
  color: var(--creative-accent3);
  font-size: 1.05em;
  margin-right: 7px;
  line-height: 1.9;
  font-family: 'Playfair Display', serif;
}
.feature-grid ul, .feature-grid ol {margin-bottom: 0;}

ol {list-style-type: decimal;}
ol li:before {display: none;}

.concierge-highlight {
  background: var(--creative-accent4);
  color: var(--primary);
  border-radius: 10px;
  padding: 6px 13px;
  font-weight: 700;
  margin-top: 10px;
}


/* ============================================================
   TABLES AND PRICING
   ============================================================ */
table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px 0 var(--creative-shadow);
  margin: 18px 0 22px 0;
  font-size: 1rem;
}
thead {
  background: var(--creative-accent2);
  color: #fff;
  font-size: 1.09em;
}
thead th {
  padding: 13px 9px;
  text-align: left;
}
tbody td {
  padding: 8px 9px;
  border-bottom: 1px solid #eee;
}
tbody tr:last-child td{border-bottom:none;}
tr:hover td {
  background: var(--creative-accent4);
  color: var(--primary);
  transition: background 0.20s;
}

.spec-summary {color: var(--creative-accent1); font-weight: 600; margin-bottom: 10px;}

/* ============================================================
   TESTIMONIALS & QUOTES
   ============================================================ */
.testimonial-card {
  background: #fff;
  color: var(--primary);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  margin-bottom: 32px;
  border-left: 6px solid var(--creative-accent2);
  box-shadow: 0 3px 12px 0 rgba(182,160,124,0.11);
  padding: 28px 22px 18px 24px;
  max-width: 650px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  border-left: 6px solid var(--secondary);
  box-shadow: 0 7px 22px 0 rgba(253,92,96,0.07);
}
.testimonial-card blockquote {
  color: var(--primary);
  margin-bottom: 9px;
  font-size: 1.13rem;
}
.testimonial-card footer {
  color: var(--creative-accent1);
  text-align: right;
  font-size: .98rem;
  font-style: normal;
}

.testimonials-preview, .testimonials, .experience-stories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

/* ============================================================
   FOOTER & FOOTER MENU
   ============================================================ */
footer {
  width: 100%;
  background: #171F26;
  color: #fff;
  padding: 40px 0 20px 0;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  margin-top: 60px;
  position: relative;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.82;
  padding: 4px 0;
  font-size: 1.05rem;
  letter-spacing: 0.015em;
  transition: opacity 0.16s;
}
.footer-menu a:hover {opacity:1; color:var(--creative-accent3);}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-branding img {
  height: 38px;
  margin-right: 10px;
}
.footer-branding p {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  color: #fff;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Address in legal blocks */
address p {
  color: var(--primary);
  font-size: 0.98rem;
  margin-bottom: 5px;
}

/* ============================================================
   COOKIE CONSENT BANNER (BOTTOM FIXED & MODAL)
   ============================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1200;
  background: #fff;
  color: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 38px;
  box-shadow: 0 -2px 14px 0 rgba(23,31,38,0.10);
  border-top: 4px solid var(--secondary);
  font-size: 1rem;
  animation: cookie-fade-in 0.6s cubic-bezier(.37,1.2,.49,1.01);
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 18px 10px;
    font-size: 0.97rem;
  }
}

.cookie-consent-banner button {
  margin-right: 14px;
  margin-bottom: 0;
  background: var(--creative-accent2);
  color: #fff;
  padding: 10px 22px;
  border-radius: 14px;
  font-size: 1.01rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(95,168,211,0.11);
}
.cookie-consent-banner button:last-child {
  margin-right: 0;
  background: var(--creative-accent3);
  color: var(--primary);
}
.cookie-consent-banner button:focus {outline: 2px solid var(--secondary);}

@keyframes cookie-fade-in {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(23,31,38,0.33);
  display: flex;
  justify-content: center; align-items: center;
  animation: cookie-fade-in 0.29s cubic-bezier(.37,1.2,.49,1.01);
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 40px -2px rgba(23,31,38,0.22);
  padding: 36px 34px;
  max-width: 380px;
  min-width: 300px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.cookie-modal .cookie-category label {
  font-size: 1.02rem;
  color: var(--primary);
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: var(--creative-accent3);
  width: 22px; height: 22px;
}
.cookie-modal .cookie-category input[disabled],
.cookie-modal .cookie-category label[disabled]{opacity:0.6;}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 60px;
  font-family: 'Playfair Display', serif;
}
.cookie-modal-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.23rem;
  color: var(--creative-accent1);
  margin-bottom: 7px;
  cursor: pointer;
  border-radius: 6px;
  padding: 0 8px;
  transition: background 0.15s;
}
.cookie-modal-close:hover{background: var(--creative-accent2); color: #fff;}

@media (max-width:460px){
  .cookie-modal {min-width:180px; padding:18px 7px;}
}

/* ============================================================
   FORMS
   ============================================================ */
input, select, textarea {
  border-radius: 7px;
  border: 1px solid #c8c8c8;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  background: #f6f7f9;
  color: var(--primary);
  margin-bottom:16px;
  transition: box-shadow 0.16s;
  box-shadow: 0 1px 5px 0 rgba(23,31,38,.04);
}
input:focus, select:focus, textarea:focus { box-shadow: 0 0 1px 2px var(--creative-accent2); outline: none; border-color: var(--creative-accent2);}
label {
  margin-bottom: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1.06rem;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .container {padding-left: 5vw; padding-right: 5vw;}
}
@media (max-width: 900px) {
  .content-wrapper, .text-section {padding: 17px 7vw;}
}
@media (max-width: 700px) {
  .section, section {padding-left: 9px; padding-right: 9px;}
}
@media (max-width: 520px) {
  .container {padding-left: 8px; padding-right: 8px;}
  .section, section {padding-left: 2px; padding-right: 2px;}
}

/* ============================================================
   MICRO-INTERACTIONS
   ============================================================ */
.card, .content-wrapper, .feature-grid > div, .cta-button, .footer-menu a, .mobile-nav a, .cookie-consent-banner button {
  transition: box-shadow 0.18s, transform 0.13s, background 0.15s, color 0.15s;
}
.card:hover, .content-wrapper:hover {
  box-shadow: 0 7px 22px 0 var(--creative-shadow);
  z-index: 2;
}

.content-wrapper.text-section:hover {
  box-shadow: 0 8px 32px 0 rgba(253,92,96,0.11);
}
h1, h2, h3 {
  transition: color 0.15s, text-shadow 0.20s;
}
h1:hover, h2:hover, h3:hover {color: var(--creative-accent2);}

/* Focus ring for accessibility */
a:focus-visible, button:focus-visible,.cta-button:focus-visible {outline:2px solid var(--creative-accent2);}

/* ============================================================
   SCROLLBAR STYLING (SAFE)
   ============================================================ */
::-webkit-scrollbar {width:10px;background:var(--accent);}
::-webkit-scrollbar-thumb {background:var(--creative-accent2);border-radius:8px;}

/* ============================================================
   SPECIAL CLASSES & UTILITIES
   ============================================================ */
.legal {
  margin-bottom: 55px;
}
.thank-you {
  min-height: 54vh;
}

/********** END OF FILE **********/
