/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #8B0023;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #002947;
  text-decoration: underline;
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
address {
  font-style: normal;
  line-height: 1.7;
  color: #555;
  font-size: 15px;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #002947;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.3rem; margin-bottom: 12px; font-weight: 600;}
h4 {font-size: 1.1rem; font-weight: 500;}

p, li, .btn-primary, .btn-secondary, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}
p {
  margin-bottom: 16px;
  color: #222;
}
strong { font-weight: 600; }

/* SPACING & CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* MAIN LAYOUT */
header {
  background: #fff;
  border-bottom: 1px solid #F2F2F2;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  gap: 14px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #002947;
  font-weight: 500;
  padding: 4px 0;
  transition: color .2s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #8B0023;
  transition: width .2s;
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.btn-primary {
  display: inline-block;
  background: #8B0023;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  box-shadow: 0 2px 8px rgba(139,0,35,0.05);
  transition: background .18s, box-shadow .2s, transform .14s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.02em;
  margin-left: 20px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #002947;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px rgba(139,0,35,0.06);
  text-decoration: none;
}

/* Hamburger menu -- shown on mobile only */
.mobile-menu-toggle {
  display: block;
  background: #fff;
  color: #8B0023;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 50%;
  border: 1px solid #eee;
  margin-left: 14px;
  transition: background .2s,border .2s,color .2s;
  z-index: 103;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2F2F2;
  border-color: #8B0023;
  color: #002947;
}

@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(245,245,245,0.98);
  z-index: 102;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.87,.02,.47,1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: #fff;
  color: #8B0023;
  border-radius: 50%;
  border: 1px solid #eee;
  margin: 24px 0 0 20px;
  padding: 8px 16px;
  transition: background .18s, color .18s, border .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2F2F2;
  color: #002947;
  border-color: #8B0023;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 48px 0 0 0;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #002947;
  padding: 8px 0;
  transition: color .18s, background .18s;
  border-radius: 6px;
  min-width: 120px;
  min-height: 40px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eee;
  color: #8B0023;
}

@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hide main nav on mobile, show on desktop */
.main-nav, .btn-primary {
  display: none;
}
@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .btn-primary {
    display: inline-block;
  }
}

/* HERO SECTION */
.hero {
  padding: 60px 0 40px 0;
  background: #fff;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  color: #8B0023;
  font-size: 2.2rem;
}
.hero p {
  color: #222;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
@media (min-width:600px){
  .hero h1 {font-size: 3rem;}
  .hero p {font-size: 1.28rem;}
}

/* FEATURES */
.features {
  background: #F2F2F2;
  border-radius: 24px;
  margin: 40px auto 60px auto;
  padding: 40px 0;
}
.features .container {
  flex-direction: column;
}
.features h2 {
  text-align: center;
  color: #002947;
  margin-bottom: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(0,41,71,0.08);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 240px;
  text-align: center;
  padding: 34px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  transition: box-shadow .25s, transform .15s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 4px 32px rgba(139,0,35,0.13);
  transform: translateY(-4px) scale(1.018);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.11rem;
  font-weight: 600;
  color: #002947;
}
.feature-grid p { color: #222; font-size: 1rem; min-height: 54px; }
.feature-grid span {
  color: #8B0023;
  font-weight: 600;
  font-size: 1.03rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 24px 0 32px 0;
  background: #fff;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 28px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  flex-direction: row;
}
.testimonial-card {
  background: #F2F2F2;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,41,71,0.08);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 220px;
  max-width: 380px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  margin-right: 0;
  position: relative;
  transition: box-shadow .25s, transform .17s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 2px;
}
.testimonial-card div {
  color: #8B0023;
  font-size: 1.2rem;
}
.testimonial-card span {
  color: #002947;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px rgba(139,0,35,0.15);
  transform: translateY(-4px) scale(1.01);
}

/* CTA */
.cta {
  background: #002947;
  border-radius: 24px;
  color: #fff;
  padding: 45px 0;
  margin: 44px 0 0 0;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 2rem;
}
.cta p {
  font-size: 1.13rem;
  color: #F2F2F2;
  margin-bottom: 16px;
}
.cta .btn-primary {
  margin-left: 0;
}

/* SERVICES, ABOUT, SCHEDULE, ETC. */
.services .content-wrapper, .about .content-wrapper, .contact-info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .services .content-wrapper, .about .content-wrapper, .contact-info .content-wrapper {
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .services .content-wrapper > * { min-width: 240px; }
}
.services h2, .about h2, .contact-info h2 { color: #002947; margin-bottom: 18px; font-size: 1.55rem; }
.service-overview ul, .about ul, .schedule-highlights ul, .top-restaurant-list ul, .atelier-description ul {
  margin-bottom: 0;
}
.service-overview p, .sommelier-info p, .personal-care-info p, .atelier-description p {
  color: #222;
  font-size: 1.05rem;
}
.services .btn-primary { margin-left: 0; margin-top: 20px; }
.price-info p {
  font-size: 1.09rem;
  color: #8B0023;
  font-weight: 600;
  margin-top: 0;
}
.schedule-highlights h3, .top-restaurant-list h3, .sommelier-info h3, .personal-care-info h3, .atelier-description h3 {
  margin-bottom: 7px;
}
.values-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}
.values-icons img { width: 38px; height: 38px; }

/* CONTACT-INFO & ADDRESS */
.contact-info address {
  font-size: 1.05rem;
  color: #555;
  margin-top: 12px;
}

/* LEGAL PAGES */
.legal .container {
  padding: 32px 18px;
}
.legal .content-wrapper {
  max-width: 760px;
  margin: 0 auto;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* FOOTER */
footer {
  background: #F2F2F2;
  border-top: 1px solid #edecec;
  margin-top: 72px;
}
footer section {
  padding: 30px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-contact, .footer-menu, .footer-brand {
  margin-bottom: 20px;
}
.footer-contact h3 {
  color: #8B0023;
  margin-bottom: 6px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-menu a {
  color: #002947;
  font-weight: 500;
  font-size: 1rem;
  transition: color .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #8B0023;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-brand img {
  width: 48px;
  height: auto;
}
.footer-brand p {
  font-size: 0.98rem;
  color: #222;
}
@media (min-width:900px) {
  footer .content-wrapper {
    flex-direction: row;
    gap: 36px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact, .footer-menu, .footer-brand {
    margin-bottom: 0;
  }
  .footer-brand p {
    max-width: 320px;
  }
}

/* CARD CONTAINER FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,41,71,0.08);
  padding: 26px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------ MICRO-INTERACTIONS ------ */
input, textarea, select {
  border: 1px solid #ececec;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  padding: 10px 16px;
  margin-bottom: 18px;
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #8B0023;
  outline: none;
}

/* ----------------- COOKIE BANNER & PREFERENCES MODAL ----------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(0,41,71,0.09);
  border-top: 1px solid #edecec;
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 600;
  animation: cookieappear .45s cubic-bezier(.65,.09,.44,.97) 1;
}
@keyframes cookieappear {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #F2F2F2;
  color: #002947;
  transition: background .19s, color .19s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #8B0023;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #002947;
}
.cookie-banner .reject {
  background: #F2F2F2;
  color: #8B0023;
  border: 1px solid #8B0023;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e9e9e9;
  color: #002947;
  border: 1px solid #002947;
}
.cookie-banner .settings {
  background: #F2F2F2;
  color: #002947;
  border: 1px solid #002947;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #eee;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  background: rgba(0,41,71,0.23);
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 615;
  animation: fadeinbg .3s both;
}
@keyframes fadeinbg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(0,41,71,0.16);
  padding: 36px 28px 24px 28px;
  width: 96%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideupmodal .4s cubic-bezier(.48,.19,.13,.99) 1;
  position: relative;
}
@keyframes slideupmodal {
  from { transform: translateY(38px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #8B0023;
  font-size: 1.26rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #8B0023;
}
.cookie-modal .essential {
  color: #555;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px; right: 14px;
  background: #fff;
  color: #8B0023;
  border: none;
  font-size: 1.3rem;
  border-radius: 50%;
  padding: 5px 13px 5px 13px;
  cursor: pointer;
  transition: background .17s, color .17s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus { background: #F2F2F2; color: #002947; }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
  .container {
    padding: 0 5vw;
  }
  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid {
    gap: 18px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 580px) {
  .hero { padding: 36px 0 22px 0; }
  .cta { padding: 28px 0; }
  .features, .testimonials { padding: 16px 0; }
  .testimonial-card, .feature-grid > div { padding: 18px 9px; }
}

/* SCROLLBAR MINIMALIST */
::-webkit-scrollbar { width: 8px; background: #F2F2F2; }
::-webkit-scrollbar-thumb { background: #e3e3e3; border-radius: 10px; }

/* ------ UTILITIES ------ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Hide when not needed */
.hide { display: none !important; }

/* Z-INDEXING FOR OVERLAYS/MENUS */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { z-index: 1000; }

/* FONTS - LOAD MONTSERRAT AND ROBOTO */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
