/* =====================
   CSS RESET & BASELINE
====================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFF;
  color: #54443A;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #B6985A;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
:focus-visible {
  outline: 2px solid #B6985A;
  outline-offset: 2px;
}

/* =====================
   BRAND COLOR VARIABLES
====================== */
:root {
  --primary: #54443A;  /* Headings, strong text */
  --secondary: #FFF;  /* Base background */
  --accent: #86A789;  /* Buttons, highlights */
  --gold: #B6985A;    /* Luxury gold for deco/elements */
  --text: #54443A;
  --muted: #817060;
  --card-bg: #FFFDF7;
  --section-bg: #FCFAF6;
  --footer-bg: #EFE5DA;
  --shadow: 0 2px 16px 0 rgba(84,68,58,0.07);
  --radius: 16px;
}

/* =====================
       TYPOGRAPHY
====================== */
h1, h2, h3, h4 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  font-weight: 500;
}
p, li, address, .author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}
p, .author {
  margin-bottom: 12px;
}
strong, b {
  color: var(--primary);
  font-weight: 700;
}

/* Typography scale for responsive */
@media (min-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 900px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.3rem; }
}

/* ==============================
      LAYOUT & CONTAINER STYLES
============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  flex: 1 1 0;
}

/* =======================
        HEADER/nav
======================== */
header {
  background: var(--secondary);
  box-shadow: 0 2px 10px 0 rgba(84,68,58,0.04);
  position: sticky;
  top: 0;
  z-index: 1030;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
.logo img {
  max-height: 42px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.2s;
  border-radius: 2px;
  position: absolute;
  left: 0; bottom: 0;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

/* =============
   BURGER MENU
============== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.15s, box-shadow 0.15s;
  z-index: 2002;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  box-shadow: 0 0 0 3px var(--gold);
}
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}

/* ==============
    MOBILE MENU
============== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(84,68,58,0.90);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.64,.57,.67,1.53);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--gold);
  padding: 20px;
  background: transparent;
  border: none;
  align-self: flex-end;
  z-index: 2010;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-top: 30px;
}
.mobile-nav a {
  font-size: 1.4rem;
  color: var(--secondary);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  background: none;
  padding: 12px 0;
  width: 80vw;
  text-align: center;
  border-radius: 8px;
  transition: background 0.10s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--gold);
  color: #fff;
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

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

/* ==================
       BUTTONS
=================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  background: var(--accent);
  color: #fff;
  padding: 12px 34px;
  border-radius: 22px;
  box-shadow: 0 2px 8px 0 rgba(134,167,137,0.08);
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  position: relative;
  outline: none;
}
.btn:after {
  content: '';
  background: var(--gold);
  display: inline-block;
  height: 3px;
  width: 0;
  border-radius: 2px;
  position: absolute;
  left: 22px;
  bottom: 10px;
  transition: width 0.25s;
}
.btn:hover:after,
.btn:focus:after {
  width: 50%;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold);
  color: var(--primary);
}
.btn-accent {
  background: var(--primary);
  color: #fff;
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--gold);
  color: var(--primary);
}
.btn-secondary {
  background: var(--gold);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: #fff;
}

/* =====================
   CARD & FLEX PATTERNS
====================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.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: 20px;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/**** Section/USPs/Feature Cards/Lists ****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  margin: 0 0 20px 0;
}
.feature-grid li {
  background: var(--secondary);
  border-radius: 14px;
  flex: 1 1 220px;
  min-width: 200px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #e5dbc9;
  position: relative;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/***** Services/Workshops List *****/
.services-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.services-list li, .workshop-list li {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 210px;
  min-width: 200px;
  padding: 20px 20px 18px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #E8DFCC;
  position: relative;
}
.price {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 7px;
}
@media (max-width: 820px) {
  .services-list, .workshop-list {
    flex-direction: column;
    gap: 14px;
  }
}

/*****
    HERO SECTION
*****/
.hero {
  background: linear-gradient(120deg, #F9F8F5 70%, #E4DFD3 100%);
  padding: 60px 0 46px 0;
  margin-bottom: 40px;
  box-shadow: 0 6px 18px 0 rgba(134,167,137,0.08);
  border-bottom: 3px solid var(--gold);
  position: relative;
}
.hero .content-wrapper {
  max-width: 700px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .hero {
    padding: 34px 0 24px 0;
  }
}

/*****
      TESTIMONIALS / .testimonial-card 
*****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 0 20px 0;
  border-left: 5px solid var(--gold);
  transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 rgba(86,167,137,0.11);
  background: #fefae5;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.testimonial-card .author {
  font-size: 0.98rem;
  color: var(--muted);
  font-style: italic;
  margin-left: 24px;
  min-width: 130px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
  .testimonial-card .author {
    margin-left: 0;
    margin-top: 6px;
  }
}

/*****
     FILTER OPTIONS
*****/
.filter-options {
  margin: 20px 0 0 0;
  color: var(--primary);
  font-size: 1.045rem;
  font-weight: 500;
}
.filter-options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.filter-options li {
  background: #F7F5EE;
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 11px;
  border: 1px solid #ede6d6;
  font-size: 0.935em;
}

/****
     SERVICE HIGHLIGHT / INFOS
****/
.service-highlight, .pickup-info, .pricing-info, .service-description, .after-workshop-benefits {
  background: #F8F7F3;
  color: var(--primary);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  margin: 16px 0 12px 0;
  padding: 14px 18px;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(134,167,137,0.06);
}

/*****
    FOOTER
*****/
footer {
  background: var(--footer-bg);
  padding: 38px 0 22px 0;
  color: var(--primary);
  font-size: 0.98rem;
  border-top: 2px solid var(--gold);
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--gold);
}
.footer-contact,
.footer-branding {
  margin-bottom: 8px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-branding {
  font-size: 1rem;
  gap: 12px;
}
.footer-branding img {
  height: 28px;
  width: 28px;
  display: inline-block;
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* =====================
    SPECIAL SECTIONS
====================== */
/* Reservation flow/gifting/steps */
.reservation-flow-section ol,
.how-to-reserve ol,
.step-by-step ol {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 10px;
  margin-bottom: 12px;
  list-style-position: inside;
  color: var(--primary);
  font-size: 1rem;
}
/* About shop/contact list */
.contact-section ul,
.about-section ul,
.brand-values ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
  font-size: 1rem;
}
.policy-section ul,
.cookies-policy-section ul,
.terms-of-use-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 12px;
}

/*****
   THANK YOU SECTION
*****/
.thankyou-section {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(110deg,#FAF7F2 80%, #E4DFCF 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

/* ====================
    COOKIE BANNER
====================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffcf8;
  color: var(--primary);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 20px 0 rgba(84,68,58,0.10);
  padding: 18px 18px 12px 18px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  opacity: 1;
  transition: transform 0.44s cubic-bezier(.64,.57,.67,1.53), opacity 0.34s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-bottom: 0 !important;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 7px 20px;
  background: var(--gold);
  color: var(--primary);
  border: none;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 2px 8px 0 rgba(182,152,90,0.07);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.cookie-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.cookie-accept:hover,
.cookie-btn.cookie-accept:focus {
  background: var(--gold);
  color: var(--primary);
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 7px 16px;
}
.cookie-btn.cookie-settings:hover {
  background: var(--accent);
  color: #fff;
}

/* Cookie Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(84,68,58, 0.60);
  z-index: 4002;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.33s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFFDF6;
  width: 94vw;
  max-width: 380px;
  padding: 32px 22px 22px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 4003;
  animation: fadeIn .3s;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.78); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.14s;
  z-index: 1;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--accent);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1.02rem;
  color: var(--primary);
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #EADAAB;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
  margin-right: 4px;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.16s;
  box-shadow: 0 0 3px #b6985a55;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-desc {
  font-size: 0.99rem;
  color: var(--muted);
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

/* ===============
 RESPONSIVE LAYOUTS
================ */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 700px) {
  .section, .thankyou-section, .hero {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.14rem; }
  .footer-branding { font-size: 0.98rem; }
}

/* Prevent card and section overlap globally */
.section, .card, .testimonial-card, .feature-grid li, .services-list li, .workshop-list li {
  margin-bottom: 20px;
}

/* Remove outline from img and svg */
img:focus, svg:focus { outline: none; }

/* Selection Styling for luxury touch */
::selection {
  background: var(--gold);
  color: #fff;
}

/* Decorate gold accent lines */
hr, .gold-line {
  border: none;
  height: 3px;
  margin: 18px 0;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.18;
}

/* Subtle hover for cards/feature items */
.card:hover, .services-list li:hover, .workshop-list li:hover, .feature-grid li:hover {
  box-shadow: 0 4px 24px 0 rgba(182,152,90,0.17);
  border-color: var(--gold);
  z-index: 2;
  transition: box-shadow 0.19s, border-color 0.15s;
}

/* ==============
   UTILITY CLASSES
============== */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mb-1 { margin-bottom: 8px; }
.mt-1 { margin-top: 8px; }
.center { text-align: center; }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
