/* --- CSS RESET & BASE --- */
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; }
*, *:before, *:after { box-sizing: inherit; }

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #111613;
  color: #fff;
  letter-spacing: 0.03em;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: #E9A621; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #fff200; text-decoration: underline; }

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

ul, ol { padding-left: 1.3em; margin-bottom: 16px; }
li { margin-bottom: 8px; }

strong { color: #fff; font-weight: bold; }
em { color: #E9A621; font-style: italic; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #E9A621;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; margin-top: 32px; }
h2 { font-size: 1.8rem; margin-top: 32px; }
h3 { font-size: 1.2rem; margin-top: 28px; color: #fff; }
h4 { font-size: 1.1rem; margin-top: 20px; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- TECH FUTURISTIC BACKGROUNDS --- */
body {
  background: linear-gradient(125deg, #252A24 0%, #252A24 50%, #232E26 100%);
}
section {
  background: rgba(38, 45, 36, 0.86);
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 rgba(65,97,52,0.09), 0 1.5px 8px 0 rgba(233,166,33,0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* --- HEADER --- */
header {
  background: rgba(23, 28, 21, 0.96);
  border-bottom: 2px solid #E9A621;
  box-shadow: 0 4px 16px -8px rgba(65,97,52,0.13);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 66px;
  padding: 8px 16px;
  gap: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #E9A621;
  font-size: 1rem;
  padding: 8px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: rgba(233,166,33,0.08);
}
header .cta-btn {
  background: #416134;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 10px 30px;
  margin-left: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 28px 0 rgba(65,97,52,0.2);
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  outline: none;
  position: relative;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: #E9A621;
  color: #232D1E;
  box-shadow: 0 4px 36px 0 #e9a62155;
  text-shadow: 0 0 8px #fff;
}

header img {
  height: 48px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #E9A621;
  display: none;
  cursor: pointer;
  margin-left: 8px;
  z-index: 101;
  padding: 8px 8px 8px 16px;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(233,166,33,0.12);
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 86vw;
  max-width: 450px;
  min-height: 100vh;
  background: #1b2016;
  box-shadow: 6px 0 30px 4px #416134,
              16px 0 80px 36px rgba(0,0,0,0.29);
  z-index: 9999;
  transform: translateX(-110%);
  transition: transform 0.34s cubic-bezier(.65,.05,.36,1);
  padding: 28px 24px 24px 24px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.44s cubic-bezier(.22,1.18,.2,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #E9A621;
  font-size: 2.1rem;
  margin-bottom: 30px;
  cursor: pointer;
  padding: 10px;
  border-radius: 60px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(233,166,33,0.12);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.2s, background 0.22s;
  border-radius: 10px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #2d411e;
  color: #E9A621;
}

@media (max-width: 990px) {
  header nav, header .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* --- Section/Content Cards & Layouts --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #1d2218;
  border-radius: 20px;
  box-shadow: 0 1.5px 8px 0 rgba(65,97,52,0.14);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.17s, border 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 28px 0 #e9a62185, 0 1px 16px 0 rgba(65,97,52,0.16);
  border: 1.5px solid #E9A621;
}

.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;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(65,97,52,0.09);
  margin-bottom: 20px;
  font-size: 1.07rem;
  flex: 1;
  min-width: 260px;
}
.testimonial-card p {
  margin: 0;
  font-weight: 500;
  color: #222;
}
.testimonial-card span {
  font-weight: 600;
  margin-left: 8px;
  color: #416134;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- NEWSLETTER / FORM STYLES --- */
form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  min-width: 220px;
}
input[type="email"], input[type="text"], input[type="tel"], textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: #232E26;
  color: #fff;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 0.5px 4px #232;
  margin-right: 8px;
  outline: none;
  transition: box-shadow 0.18s;
}
input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
  box-shadow: 0 0 0 2px #E9A621;
}
button, input[type="submit"] {
  background: #E9A621;
  color: #232E26;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 11px 24px;
  margin: 0;
  cursor: pointer;
  font-size: 1.04em;
  box-shadow: 0 2px 8px #e9a62155;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.18s;
}
button:hover, button:focus, input[type="submit"]:hover {
  background: #416134;
  color: #fff;
  box-shadow: 0 4px 36px 0 #41613462;
  transform: translateY(-2px) scale(1.03);
}

/* --- SPECIAL: Review Snippets --- */
.review-snippets, .reviews-listing, .menu-updates {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.review-snippets article, .reviews-listing article, .menu-updates article {
  background: #171c14;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(233,166,33,0.06);
  padding: 20px 22px;
  flex: 1 1 240px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s, border 0.18s;
}
.review-snippets article:hover, .reviews-listing article:hover {
  box-shadow: 0 2px 24px 0 #e9a62180;
  border: 1.2px solid #E9A621;
}
.review-snippets a, .reviews-listing a {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99em;
  color: #E9A621;
  text-decoration: underline;
  margin-top: 4px;
}

/* --- Lists with Icons --- */
ul li img {
  vertical-align: middle;
  margin-right: 10px;
  height: 26px;
  width: 26px;
}
ul li {
  padding-left: 2px;
  font-size: 1.05rem;
}

/* --- Pricing Section / Highlights --- */
.pricing {
  padding: 10px 0 0 0;
  font-size: 1.18rem;
  color: #E9A621;
  font-weight: 700;
}
.promotion-highlights, .before-after-stats {
  margin-top: 16px;
  font-size: 1.03rem;
  background: #232E26;
  color: #E9A621;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 1px 5px #232;
}

/* --- Footer --- */
footer {
  background: #171c14;
  border-top: 2px solid #416134;
  padding: 40px 0 26px 0;
  font-size: 1rem;
  color: #fff;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1.07em;
}
footer nav a {
  color: #E9A621;
}
footer nav a:hover, footer nav a:focus { color: #fff; }
footer address {
  font-style: normal;
  color: #E9A621;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer address img {
  height: 1em;
  margin-right: 4px;
}
.footer-logo img {
  height: 48px;
  filter: drop-shadow(0px 0px 9px #E9A62125);
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding: 0 5vw;
  }
  section {
    padding: 24px 7vw;
    margin-bottom: 32px;
  }
  .content-grid, .card-container, .review-snippets, .reviews-listing, .menu-updates {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 18px 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feature-item { gap: 9px; }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    padding: 8px 10vw;
  }
  .section {padding: 22px 6vw;}
}

@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  .section, section {
    padding: 12px 2vw;
    margin-bottom: 16px;
  }
}

/* --- Micro-interactions --- */
.card,
.review-snippets article,
.reviews-listing article,
.menu-updates article,
button, .cta-btn,
.testimonial-card {
  transition: box-shadow 0.18s, border 0.19s, color 0.14s, background 0.18s, transform 0.13s;
}
.card:active,
.review-snippets article:active,
.testimonial-card:active,
button:active {
  transform: scale(0.98);
  box-shadow: 0 0 0 0 #0002;
}

/* --- VISUAL ACCENTS & NEON EFFECTS --- */
h1, h2, .cta-btn, .card:hover, .review-snippets article:hover, .testimonial-card {
  text-shadow: 0 0 2px #E9A62140, 0 0 10px #E9A62110, 0 2px 24px #41613422;
}

section:before {
  content: '';
  display: block;
  position: absolute;
  top: -18%;
  left: -25%;
  width: 105px;
  height: 150px;
  background: #E9A621;
  opacity: 0.18;
  filter: blur(36px);
  z-index: 0;
  border-radius: 39% 61% 54% 46% / 47% 52% 48% 53%;
  pointer-events: none;
}

section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -22%;
  right: -18%;
  width: 90px;
  height: 130px;
  background: #416134;
  opacity: 0.16;
  filter: blur(29px);
  z-index: 0;
  border-radius: 52% 48% 46% 54% / 54% 52% 48% 46%;
  pointer-events: none;
}

section > .container,
.content-wrapper, .card, .card-container,
.review-snippets, .testimonial-card,
.review-snippets article, [class^="review-"] article,
.menu-updates article
{ position: relative; z-index: 1; }

/* --- Misc Classes --- */
.tagline {
  font-size: 1.3em;
  color: #E9A621;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #232E26;
  color: #E9A621;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 0.98em;
}
.next-steps ul {
  margin-top: 8px;
  margin-bottom: 8px;
  list-style-type: disc;
  padding-left: 16px;
}
.next-steps a { color: #E9A621; font-weight: 600; }
.media-mentions {
  margin-top: 10px;
  color: #E9A621;
  font-weight: 600;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1A221B;
  color: #fff;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -3px 22px #E9A62129;
  padding: 22px 10px 18px 10px;
  font-size: 1.05rem;
  transition: transform 0.38s cubic-bezier(.4,1.8,.2,1), opacity 0.31s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
  cursor: pointer;
  border: none;
  outline: none;
  margin: 0;
  background: #E9A621;
  color: #222;
  margin-top: 2px;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #416134;
  color: #fff;
  box-shadow: 0 0 8px #e9a62132;
}
.cookie-banner button.settings {
  background: #252A24;
  color: #E9A621;
  border: 1px solid #E9A621;
}
.cookie-banner button.settings:hover {
  background: #E9A621;
  color: #171c14;
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #232E26;
  color: #fff;
  border-radius: 20px;
  padding: 38px 22px 28px 22px;
  box-shadow: 0 5px 54px #232  ;
  z-index: 29999;
  width: 98vw;
  max-width: 420px;
  transform: translate(-50%,-50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s cubic-bezier(.4,2,.2,1), transform 0.32s cubic-bezier(.22,1,.14,1.06);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  color: #E9A621;
  margin-bottom: 12px;
  font-size: 1.22rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #E9A621;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 48px;
  padding: 6px 8px;
}
.cookie-modal .modal-close:hover {
  background: #E9A621;
  color: #171c14;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #232;
  font-size: 1.07em;
}
.cookie-modal label {
  cursor: pointer;
  margin-right: 12px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #E9A621;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 8px;
}

.cookie-modal input:disabled, .cookie-modal .disabled {
  opacity: 0.61;
  pointer-events: none;
}

.cookie-modal .modal-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
}
.cookie-modal button {
  padding: 8px 20px;
  background: #E9A621;
  color: #232;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #416134;
  color: #fff;
}

@media (max-width:520px) {
  .cookie-modal { padding: 20px 5vw 17px 5vw; }
}

/* --- Utility --- */
.flex {
  display: flex;
}
.gap8 { gap: 8px; }
.gap16 { gap: 16px; }
.gap20 { gap: 20px; }
.gap24 { gap: 24px; }

/* --- Print fallback --- */
@media print {  
  section, header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; } 
  body { background: #fff; color: #111; }
}
