/* --- CSS 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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  background: #1C1813;
  color: #F9F5EA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #D1804C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AC4503;
  text-decoration: underline;
}

ul, ol {
  margin: 0 0 1em 1.25em;
}
li {
  margin-bottom: 0.5em;
}

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  appearance: none;
}

strong {
  color: #B25A17;
  font-weight: 700;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #FFE5CB;
  letter-spacing: .03em;
  font-weight: 800;
  margin-bottom: 0.75em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}

.subheadline {
  font-size: 1.2rem;
  color: #FFD8AA;
  margin-bottom: 1.2em;
}

p {
  font-size: 1rem;
  margin-bottom: 1em;
  color: #F9F5EA;
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1.05rem; }
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(36,30,20,0.92);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(71, 31, 14, 0.22);
}
@media (max-width: 800px) {
  .section { padding: 24px 7px; }
}

/* Card & Flex Patterns (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #332619;
  border-radius: 18px;
  box-shadow: 0 6px 32px -8px #8D5C2B40;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
}

.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;
  color: #3d230a;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 #8D5C2B24;
  margin: 14px 0 20px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #271b10;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 #B25A1724;
  padding: 24px 18px;
  flex: 1 1 190px;
  margin-bottom: 20px;
  border-left: 4px solid #B25A17;
}

/* --- FLEXBOX LAYOUT RULES ONLY --- */
.features .feature-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.features ul li, .features .feature-item {
  min-width: 200px;
  max-width: 310px;
  flex: 1 1 200px;
}
@media (max-width: 900px) {
  .features .feature-grid, .features ul {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .feature-item {
    padding: 14px 9px;
  }
}
.card {
  transition: box-shadow .23s, transform .19s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 32px 0 #B25A1767, 0 1.5px 10px 0 #fff5e81c;
  transform: translateY(-4px) scale(1.01);
  border-left-color: #D1804C;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(98deg,rgba(141,92,43,0.75) 0%,rgba(178,90,23,0.6) 100%), #1C1813;
  padding: 80px 0 60px 0;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #fff8ee;
  text-shadow: 0 4px 30px #8D5C2B77;
}
.hero .btn-primary {
  margin-top: 1.3em;
}

@media (max-width: 800px) {
  .hero { padding: 38px 0 28px; margin-bottom: 30px; }
}

/* --- MAIN NAVIGATION --- */
header {
  background: #26180f;
  box-shadow: 0 2px 16px 0 #00000014;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8px 14px 8px;
}
.logo img { height: 44px; }
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #FFD8AA;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color .19s, border-color .18s;
}
.main-nav a.active, .main-nav a:hover:not(.btn-primary) {
  color: #fff;
  border-bottom: 2px solid #D1804C;
}

/* --- PRIMARY BUTTON --- */
.btn-primary {
  background: linear-gradient(93deg, #D1804C 50%, #8D5C2B 100%);
  color: #fff8ee !important;
  border-radius: 14px;
  padding: 10px 26px;
  font-size: 1.12rem;
  font-weight: bold;
  letter-spacing: .04em;
  box-shadow: 0 2px 18px 0 #B25A1750;
  border: none;
  transition: background .21s, box-shadow .19s, transform .13s;
  text-shadow: 0 2px 8px #8D5C2B33;
  margin-left: 10px;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.btn-primary:focus, .btn-primary:hover {
  background: linear-gradient(92deg, #B25A17 40%, #D1804C 100%);
  box-shadow: 0 5px 22px 0 #D1804C70;
  text-decoration: none;
  transform: translateY(-1px) scale(1.028);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: #D1804C;
  background: transparent;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .17s, color .19s;
  z-index: 103;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2a2017;
  color: #fff;
}

@media (max-width: 1080px) {
  .main-nav { gap: 13px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
  .logo img { height: 36px; }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 9px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,24,15,0.97);
  z-index: 2010;
  transform: translateX(-110%);
  transition: transform .38s cubic-bezier(.7,.09,.44,1.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  pointer-events: none;
}
.mobile-menu.open {
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  color: #FFD8AA;
  background: transparent;
  margin: 24px 24px 0 0;
  border-radius: 8px;
  border: 2px solid transparent;
  padding: 4px 10px;
  transition: background .15s, color .12s, border .12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #D1804C;
  background: #fff8ee23;
  border-color: #D1804C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 90vw;
  max-width: 400px;
  margin: 30px 0 0 38px;
}
.mobile-nav a {
  color: #FFD8AA;
  font-size: 1.25rem;
  padding: 11px 0 7px 0;
  border-bottom: 2.5px solid transparent;
  font-family: 'Roboto', Arial, sans-serif;
  transition: color .22s, border-color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border-bottom: 2.5px solid #D1804C;
  color: #fff;
}

@media (max-width: 430px) {
  .mobile-nav { margin-left: 13px; }
  .mobile-menu-close { margin-right: 7px; }
}

/* --- SECTION & LIST STYLES --- */
.service-list, .services ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-list li, .services ul li {
  background: #25170e;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 #B25A1744;
  padding: 24px 20px;
  flex: 1 1 260px;
  color: #FFD8AA;
  font-size: 1.02rem;
  margin-bottom: 10px;
  transition: box-shadow .18s, background .17s;
}
.service-list li h3, .services ul li h3 {
  margin-bottom: 0.25em;
  color: #D1804C;
  font-size: 1.18rem;
}
.service-list li:hover, .services ul li:hover {
  box-shadow: 0 8px 30px #B25A1765;
  background: #2d1b0a;
}

.menu-highlights {
  margin-top: 18px;
  background: #332619;
  border-radius: 13px;
  padding: 19px;
  color: #FFD8AA;
}
.menu-highlights h3 { color: #D1804C; margin-bottom: .5em; }

.ingredient-notes {
  margin-top: 18px;
  background: #2c2116;
  border-radius: 13px;
  padding: 18px;
  color: #FFE5CB;
}
.ingredient-notes h3 { color: #B25A17; margin-bottom: .49em; }

@media (max-width: 900px) {
  .service-list, .services ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- ABOUT & LEGAL --- */
.about-short, .about, .legal {
  background: #21160c;
  margin-bottom: 60px;
  padding: 40px 22px 40px 22px;
  border-radius: 22px;
  box-shadow: 0 6px 28px #8D5C2B18;
}
.text-section {
  margin-bottom: 18px;
  font-size: 1.07rem;
  color: #F9F5EA;
}
.legal h1, .legal h2 {
  color: #FFD8AA;
}
.legal ul {
  margin-left: 1em;
  margin-bottom: 24px;
}
.legal a {
  color: #D1804C;
  word-break: break-all;
  text-decoration: underline;
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 8px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {

  color: #2f220f;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 #B25A176a;
  padding: 24px 25px;
  margin: 15px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 540px;
  min-width: 220px;
  font-size: 1.05rem;
  transition: box-shadow .19s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px #D1804C88;
  transform: translateY(-2px) scale(1.017);
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #B25A17;
  font-weight: 600;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .testimonial-slider { flex-direction: column; gap: 16px; }
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.08rem;
}
.contact-details img { height: 20px; margin-right: 9px; vertical-align: middle; }
.opening-hours {
  margin-top: 16px;
  color: #3d230a;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 3px 15px #8D5C2B24;
}
.opening-hours h3 { color: #B25A17; font-size: 1.04rem; margin-bottom: 4px; }

.map-info {
  background: #292015;
  border-radius: 13px;
  padding: 15px 18px;
  margin-top: 10px;
  color: #FFE5CB;
}

/* --- THANK YOU --- */
.thankyou {
  margin-top: 50px;
  margin-bottom: 60px;
  background: linear-gradient(97deg, #8D5C2B 5%, #B25A17 100%), #25170e;
  border-radius: 26px;
  padding: 44px 17px;
  color: #fff8ee;
  box-shadow: 0 8px 40px 0 #8D5C2B35;
}
.thankyou h1 { font-size: 2.1rem; color: #fff8ee; }

.confirmation-message, .next-steps {
  color: #FFD8AA;
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.next-steps a { color: #fff8ee; background: #B25A17; border-radius: 6px; padding: 1px 7px; margin-left: 2px; }
.next-steps a:hover { color: #FFE5CB; background: #D1804C; }

/* --- FOOTER --- */
footer {
  background: #26180f;
  padding: 36px 0 10px 0;
  color: #FFD8AA;
  border-top: 4px solid #8D5C2B;
  margin-top: 32px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2em;
}
.footer-columns > div, .footer-columns nav {
  min-width: 170px;
  flex: 1 1 190px;
  margin-bottom: 20px;
}
.footer-columns img {
  height: 34px;
  margin-bottom: 9px;
}

.footer-columns nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-columns nav a {
  color: #FFD8AA;
  font-size: 1.03rem;
  transition: color .19s;
  margin-bottom: 4px;
}
.footer-columns nav a:hover {
  color: #fff8ee;
}
footer p, footer a {
  color: #FFD8AA;
  font-size: 1rem;
}

.copyright {
  text-align: center;
  color: #FFE5CB;
  margin-top: 12px;
  font-size: 0.99rem;
}

@media (max-width: 950px) {
  .footer-columns {
    flex-direction: column;
    gap: 16px;
  }
  .footer-columns > div, .footer-columns nav {
    margin-bottom: 0;
  }
}

/* --- RESPONSIVE: stacks text-image & cards on mobile --- */
@media (max-width: 800px) {
  .text-image-section, .content-grid, .card-container, .testimonial-slider {
    flex-direction: column !important;
    gap: 14px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 9000;
  background: linear-gradient(91deg,#26180f 60%,#633A17 100%);
  color: #FFE5CB;
  padding: 20px 16px 18px 16px;
  box-shadow: 0 -6px 30px 0 #B25A1740;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1.04rem;
  animation: cookie-in .34s cubic-bezier(.7,.23,.64,1.01);
}
@keyframes cookie-in { 0% { transform: translateY(80px); opacity: 0;} 100% { transform: none; opacity: 1;}}
.cookie-banner .cookie-text { max-width: 470px; }
.cookie-banner .btn-cookie {
  background: #D1804C;
  color: #FFF8EE;
  border-radius: 12px;
  padding: 9px 19px;
  margin: 0 7px;
  font-size: 1.02rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 14px #B25A1744;
  transition: background .17s, color .14s, transform .13s;
}
.cookie-banner .btn-cookie:focus, .cookie-banner .btn-cookie:hover {
  background: #B25A17;
  color: #fff;
  transform: scale(1.055);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(41,27,14,0.89);
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  animation: cookie-modal-in .34s cubic-bezier(.7,.23,.64,1.01);
}
@keyframes cookie-modal-in { 0% { opacity: 0; transform: scale(.93);} 100% { opacity: 1; transform: none;}}
.cookie-modal-inner {
  background: #fff8ee;
  color: #3d230a;
  border-radius: 14px;
  box-shadow: 0 12px 60px #B25A1740;
  padding: 44px 28px 30px 28px;
  max-width: 430px;
  min-width: 270px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media (max-width: 490px){
  .cookie-modal-inner {padding: 25px 8px 19px 8px; max-width: 96vw;}
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 12px;
  background: transparent;
  border: none;
  color: #B25A17;
  font-size: 1.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover { color: #D1804C; }

.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 18px 0 10px 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  background: #D1804C;
  border-radius: 13px;
  outline: none;
  border: none;
  transition: background .14s;
  position: relative;
  cursor: pointer;
  margin-right: 3px;
}
.cookie-toggle:checked {
  background: #B25A17;
}
.cookie-toggle:disabled {
  background: #AAA3A1;
  cursor: not-allowed;
}
.cookie-toggle:after {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .15s, background .12s;
}
.cookie-toggle:checked:after {
  left: 19px; background: #fff8ee;
}
.cookie-toggle:disabled:after {
  background: #dad8d5;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 13px;
}
.cookie-modal-actions .btn-cookie {
  font-size: 1.04rem;
  padding: 9px 17px;
}

/* --- ANIMATIONS FOR HOVER & FOCUS --- */
.btn-primary, .cookie-banner .btn-cookie, .cookie-modal-actions .btn-cookie, .card, .feature-item, .testimonial-card {
  transition: box-shadow .19s, background .19s, color .18s, transform .14s;
}

/* --- NEON ACCENTS / MODERN TECH LOOK --- */
.btn-primary, .feature-item, .cookie-banner, .cookie-modal-inner {
  box-shadow: 0 0 10px #D1804C40, 0 0 0 #fff0;
}
.btn-primary:focus, .btn-primary:hover, .cookie-banner .btn-cookie:focus, .cookie-banner .btn-cookie:hover {
  outline: 2.5px solid #FFD8AA;
  box-shadow: 0 0 15px #FFD8AA50, 0 0 0 #fff0;
}

/* --- VISUAL HIERARCHY SPACING --- */
main > section, .section, .hero, .about-short, .about, .legal, .thankyou {
  margin-bottom: 60px;
}

/* --- SELECTED UTILITIES --- */
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.rounded { border-radius: 12px !important; }
.shadow { box-shadow: 0 4px 24px #B25A1750 !important; }

@media (max-width: 600px) {
  .content-wrapper, .section, .about-short,.about, .legal, .thankyou, .hero {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* --- MODERN SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; background: #26180f; }
::-webkit-scrollbar-thumb {background: #8D5C2B; border-radius: 6px;}

/* --- ACCESSIBLE FOCUS OUTLINE --- */
:focus { outline: 2.2px solid #D1804C; outline-offset: 1.5px; }

/* --- Z-ORDER HANDLING FOR MENUS & BANNERS --- */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 110; }

/* --- ADDITIONAL: PREVENT OVERLAPPING & MOBILE SPACING --- */
@media (max-width: 680px) {
  .footer-columns { flex-direction: column; gap: 13px; }
  .container { padding: 0 2vw; }
  .card-container {gap: 14px;}
  .feature-item, .card, .service-list li {padding: 13px 6px;}
}

/* --- END --- */
