/* 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, menu, 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,
main, 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 {
  height: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: #FFFFFF;
  color: #2D3748;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2D3748;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.65,.05,.36,1);
}
a:hover, a:focus {
  color: #E2C290;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input[type="submit"], input[type="button"] {
  font-family: inherit;
  cursor: pointer;
}
input, button, textarea, select {
  outline: none;
}

/* TYPOGRAPHY ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #2D3748;
  letter-spacing: 0.01em;
  line-height: 1.13;
}
h1 { font-size: 2.7rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1.05rem; }

p {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #2D3748;
}
.subheadline {
  font-size: 1.13rem;
  color: #5D6473;
  letter-spacing: 0.01em;
}

/* CONTAINER & STRUCTURE -------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

/* LAYOUT FLEXBOX PATTERNS ------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
}
.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;
  background: #fff;
  border: 2px solid #E2C290;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(45,55,72,0.07);
  margin-bottom: 24px;
  max-width: 600px;
  transition: box-shadow 0.3s cubic-bezier(.65,.05,.36,1), transform 0.3s cubic-bezier(.65,.05,.36,1);
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(45,55,72,0.14);
  transform: translateY(-4px) scale(1.02);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION ----------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FDF6EC;
  border-bottom: 4px solid #E2C290;
  min-height: 340px;
  margin-bottom: 40px;
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  gap: 18px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #2D3748;
  text-align: center;
  margin-bottom: 0;
}
.hero .subheadline {
  color: #7B7E89;
  font-size: 1.14rem;
  text-align: center;
}

/* CTA Button ------------------------------------------------- */
.cta-btn, form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 13px;
  background: #2D3748;
  color: #FFFFFF;
  padding: 13px 38px;
  margin-top: 16px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(45,55,72,0.09);
  transition: background 0.2s cubic-bezier(.62,.13,.48,.87), transform 0.18s cubic-bezier(.65,.05,.36,1), box-shadow 0.18s cubic-bezier(.65,.05,.36,1);
}
.cta-btn:hover, .cta-btn:focus, form button[type="submit"]:hover, form button[type="submit"]:focus {
  background: #E2C290;
  color: #2D3748;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px rgba(45,55,72,0.14);
}

/* HEADER ----------------------------------------------------- */
header {
  background: #FFFFFF;
  border-bottom: 2px solid #ECE4D7;
  position: sticky;
  top: 0;
  z-index: 101;
  transition: box-shadow 0.2s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
header img {
  height: 53px;
  width: auto;
  margin-right: 22px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.13rem;
  padding: 7px 10px;
  border-radius: 8px;
  color: #2D3748;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #E2C290;
  color: #2D3748;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2D3748;
  margin-left: 16px;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #ECE4D7;
}

/* MOBILE MENU ------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #2D3748;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.42,0,.33,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #E2C290;
  cursor: pointer;
  z-index: 2010;
  border-radius: 12px;
  padding: 6px 14px;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: #E2C290;
  color: #2D3748;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
  width: 100%;
  align-items: flex-start;
  padding-left: 46px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.4rem;
  padding: 8px 14px;
  border-radius: 9px;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.03em;
  transition: background 0.16s, color 0.14s;
  min-width: 180px;
  min-height: 37px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2C290;
  color: #2D3748;
}

/* MAIN LAYOUT / UNIVERSAL ------------------------------------ */
main {
  min-height: 70vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX GRIDS ------------------------------------------------- */
.review-cards-grid, .tip-cards, .featured-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.review-card, .tip-card {
  background: #FFF;
  border: 2.5px solid #E2C290;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(45,55,72,0.08);
  padding: 22px;
  min-width: 260px; max-width: 370px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.24s, transform 0.19s;
}
.review-card:hover, .tip-card:hover {
  box-shadow: 0 8px 25px rgba(45,55,72,0.13);
  transform: translateY(-3px) scale(1.015);
}
.featured-reviews {
  flex-direction: column;
  background: #FAF5E4;
  border-left: 6px solid #E2C290;
  border-radius: 14px;
  padding: 24px 28px;
  color: #2D3748;
}

.tips-grid .tip-cards {
  margin-bottom: 30px;
}
.tips-grid ul {
  padding-left: 18px;
  margin-bottom: 18px;
}
.tips-grid li {
  list-style-type: square;
  margin-bottom: 9px;
  font-size: 1.05rem;
}

/* FORMS ------------------------------------------------------ */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  align-items: center;
}
form input[type="email"], input[type="search"] {
  border: 2px solid #E2C290;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 1.05rem;
  background: #FAF5E4;
  color: #2D3748;
  font-family: 'Open Sans', Arial, sans-serif;
}
form input[type="email"]::placeholder, input[type="search"]::placeholder {
  color: #989898;
  letter-spacing: 0.01em;
  opacity: 0.75;
}
form button[type="submit"] {
  min-width: 164px;
  margin-top: 0;
  border-radius: 13px;
  background: #2D3748;
  color: #FFF;
  border: none;
}
form button[type="submit"]:hover, form button[type="submit"]:focus {
  background: #E2C290;
  color: #2D3748;
}

/* TESTIMONIALS ----------------------------------------------- */
.testimonials {
  background: #FAF5E4;
  border-top: 2px solid #E2C290;
  border-radius: 8px;
  padding: 38px 0 32px 0;
}
.testimonials .testimonial-card {
  background: #FFF;
  color: #2D3748;
}
.testimonials strong {
  color: #2D3748;
}

/* FOOTER ----------------------------------------------------- */
footer {
  background: #2D3748;
  color: #E2C290;
  padding-top: 42px;
  padding-bottom: 36px;
  font-size: 1rem;
  margin-top: 20px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
footer nav a {
  color: #E2C290;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 3px 8px;
  border-radius: 7px;
  transition: background 0.17s, color 0.16s;
}
footer nav a:hover {
  background: #E2C290;
  color: #2D3748;
}
footer .contact-info {
  font-size: 1rem;
  color: #E2C290;
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 320px;
}
footer .contact-info a {
  color: #E2C290;
  text-decoration: underline;
}

/* ABOUT / VALUES / SERVICES ---------------------------------- */
.about-preview, .about, .values, .services-preview, .collections, .newsletter-signup {
  background: #FAF5E4;
  border-radius: 16px;
  border: 2px solid #E2C290;
  margin-bottom: 52px;
}
.about-preview h2, .about h1, .values h2, .services-preview h2, .newsletter-signup h2 {
  color: #2D3748;
  margin-bottom: 8px;
}
.values ul, .about-preview ul, .services-preview ul, .club-features ul, .features ul {
  margin-top: 9px;
  margin-bottom: 20px;
  padding-left: 16px;
}
.values li, .features li, .services-preview li, .club-features li {
  font-size: 1.08rem;
  list-style: square;
  margin-bottom: 10px;
  color: #2D3748;
  line-height: 1.5;
}
.featured-reviews {
  border-left: 6px solid #E2C290;
}

/* CLUB / CONTACT --------------------------------------------- */
.club-features, .contact {
  background: #FDF6EC;
  border-radius: 14px;
  border: 2px solid #E2C290;
  margin-bottom: 54px;
}
.text-section {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

/* LEGAL PAGES ------------------------------------------------ */
.legal, .confirmation {
  background: #FCF7F0;
  border: 2px solid #E2C290;
  border-radius: 14px;
  margin-bottom: 48px;
  padding: 40px 28px;
}
.legal h1, .legal h2, .legal h3 {
  margin-bottom: 17px;
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
.legal li {
  list-style: square;
  margin-bottom: 8px;
}

/* CONFIRMATION / THANK YOU ----------------------------------- */
.confirmation {
  text-align: center;
  padding: 70px 18px;
}
.confirmation h1 {
  margin-bottom: 17px;
  font-size: 2.1rem;
}
.confirmation p {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

/* COOKIE CONSENT BANNER -------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #2D3748;
  color: #E2C290;
  z-index: 3000;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  box-shadow: 0 -4px 42px rgba(45,55,72,0.11);
  transition: transform 0.4s cubic-bezier(.62,0,.38,.99);
}
.cookie-consent-banner button {
  border: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 9px;
  background: #E2C290;
  color: #2D3748;
  padding: 10px 20px;
  margin-right: 12px;
  margin-bottom: 0;
  margin-top: 5px;
  transition: background 0.19s, color 0.2s, transform 0.13s;
}
.cookie-consent-banner button:last-child {
  margin-right: 0;
}
.cookie-consent-banner button:hover {
  background: #2D3748;
  color: #E2C290;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .cookie-banner-actions {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-consent-banner {
    align-items: flex-start;
  }
}

/* COOKIE MODAL ----------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,55,72,0.48);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s cubic-bezier(.67,.01,.46,.97) 1;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  border-radius: 17px;
  border: 2.5px solid #E2C290;
  padding: 45px 32px 32px 32px;
  min-width: 300px;
  max-width: 98vw;
  color: #2D3748;
  box-shadow: 0 8px 38px rgba(45,55,72,0.11);
  position: relative;
  animation: modalSlideIn 0.32s cubic-bezier(.67,.01,.46,.97) 1;
}
@keyframes modalSlideIn {
  0% { transform: translateY(80px) scale(0.94); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 19px;
  color: #2D3748;
  font-size: 1.35rem;
}
.cookie-modal-label {
  display: flex;
  align-items: center;
  font-size: 1.11rem;
  gap: 9px;
  margin-bottom: 14px;
}
.cookie-switch {
  width: 46px;
  height: 24px;
  background: #ECE4D7;
  border-radius: 14px;
  position: relative;
  margin-right: 10px;
}
.cookie-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.cookie-switch-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #2D3748;
  border-radius: 50%;
  transition: transform 0.17s cubic-bezier(.73,.04,.44,1.08), background 0.19s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  transform: translateX(22px);
  background: #E2C290;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #E2C290;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: #2D3748;
}
.cookie-modal-actions {
  margin-top: 17px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-modal-actions button {
  border-radius: 9px;
}

/* GEOMETRIC & STRUCTURED DECORATIVE ELEMENTS ------------------ */
.decorative-geo {
  position: absolute;
  pointer-events: none;
  opacity: 0.09;
  z-index: 0;
}

/* CARD DECOR: Sharp corners, structured lines */
.card, .review-card, .tip-card, .testimonial-card, .about-preview, .services-preview, .featured-reviews, .legal {
  border-radius: 17px 17px 7px 7px;
}

/* RESPONSIVE DESIGN ------------------------------------------ */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .review-cards-grid, .tip-cards {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .card-container, .content-grid, .card-grid, .features, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .card, .review-card, .tip-card, .testimonial-card {
    min-width: unset;
    width: 100%;
  }
  .hero {
    min-height: 220px;
    padding: 28px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  section {
    padding: 27px 9px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  .cta-btn, form button[type="submit"] {
    font-size: 1rem;
    padding: 11px 17px;
  }
  .testimonial-card, .review-card, .tip-card, .legal, .about-preview, .featured-reviews {
    padding: 13px 8px;
  }
  .cookie-modal {
    min-width: 92vw;
    padding: 26px 10px 20px 10px;
  }
  .mobile-nav {
    padding-left: 10px;
  }
}

/* ANIMATIONS ------------------------------------------------- */
.cta-btn, form button[type="submit"] {
  will-change: transform, box-shadow;
}
.review-card, .tip-card, .testimonial-card {
  will-change: transform, box-shadow;
}

/* VISUAL HIERARCHY & SPACING ---------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .review-cards-grid, .tip-cards {
  gap: 24px;
}
.card, .review-card, .tip-card {
  margin-bottom: 20px;
}
.testimonial-card {
  margin-bottom: 24px;
  gap: 18px;
  padding: 20px 22px;
}
.feature-item {
  gap: 15px;
}

/* ACCESSIBLE FOCUS STATES ------------------------------------ */
a:focus, button:focus {
  outline: 2px solid #E2C290;
  outline-offset: 2px;
}

/* SCROLLBAR STYLE (optional) ---------------------------------- */
body::-webkit-scrollbar {
  width: 10px;
  background: #F7F5EF;
}
body::-webkit-scrollbar-thumb {
  background: #E2C290;
  border-radius: 8px;
}

/* MISC ------------------------------------------------------ */
::-webkit-input-placeholder { color: #989898; }
::-moz-placeholder { color: #989898; }
:-ms-input-placeholder { color: #989898; }
::placeholder { color: #989898; }

/* Ensure .mobile-menu and .cookie-banner have proper z-index */

/* END OF CSS */
