/* CSS RESET & BASE MODERNIZER */
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 {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #234352;
  background: #fff;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #234352;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D88D1C;
}
ul, ol {
  margin-bottom: 1.5em;
  padding-left: 1.7em;
}
li {
  margin-bottom: 0.4em;
}
strong {
  font-weight: 600;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.15;
  color: #234352;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.22;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #234352;
}
h4, h5, h6 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin: 0 0 1.2em 0;
  font-size: 1rem;
  color: #234352;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #D88D1C;
  margin-bottom: 1.35em;
}
.note, .contact-note {
  background: #F3F9F6;
  color: #234352;
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 1rem;
  margin: 18px 0 0 0;
}
hr {
  border: none;
  height: 1px;
  background: #E6E9ED;
  margin: 32px 0;
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #F3F9F6;
  position: sticky;
  top: 0;
  z-index: 1005;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 6px;
  color: #234352;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #F3F9F6;
  color: #D88D1C;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #D88D1C;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  margin-left: 28px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(35,67,82,0.08);
  transition: background 0.18s, color 0.16s, transform 0.13s;
  outline: none;
  text-align: center;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #234352;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
button, .cta-button {
  transition: background 0.22s, color 0.17s, transform 0.13s;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #234352;
  cursor: pointer;
  margin-left: 32px;
}
@media (max-width: 1100px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 14px;
  }
  .cta-button {
    margin-left: 8px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 12px 40px 0 rgba(35, 67, 82, 0.16);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.66, .15, .33, 1.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #234352;
  align-self: flex-end;
  padding: 20px 22px 8px 10px;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D88D1C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  padding: 18px 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 8px;
  color: #234352;
  border-radius: 8px;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F9F6;
  color: #D88D1C;
}

@media (max-width: 768px) {
  .mobile-menu {
    min-width: 0;
    max-width: 100vw;
  }
  .mobile-nav {
    min-width: 0;
    padding: 18px 16px;
  }
}

/* HERO */
.hero {
  background: #F3F9F6;
  border-radius: 0 0 24px 24px;
  margin-bottom: 48px;
  padding: 60px 0 58px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
@media (max-width: 600px) {
  .hero {
    padding: 32px 0 30px 0;
    margin-bottom: 24px;
  }
}

/* CONTENT STRUCTURE / SPACING */
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 0 auto;
}
.content-wrapper {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.text-section {
  width: 100%;
  gap: 18px;
  font-size: 1.02em;
  margin-bottom: 0;
}

/***** FLEXBOX PATTERNS *****/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3F9F6;
  border-radius: 18px;
  padding: 24px 22px 18px 22px;
  min-width: 220px;
  box-shadow: 0 4px 22px 0 rgba(35,67,82,0.03);
  transition: box-shadow 0.17s, transform 0.14s;
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 0.25em;
}
.feature-item h3 {
  margin-bottom: 3px;
  font-size: 1.12rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 34px 0 rgba(35,67,82,0.055);
  transform: translateY(-2px) scale(1.03);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 4px 34px 0 rgba(35,67,82,0.065);
  border-radius: 18px;
  padding: 22px 26px 22px 26px;
  min-width: 230px;
  max-width: 330px;
  color: #234352;
  font-size: 1rem;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06em;
  color: #234352;
  letter-spacing: 0.01em;
}
.testimonial-stars {
  color: #D88D1C;
  font-weight: bold;
  letter-spacing: 0.11em;
  font-size: 1.02em;
}
.testimonial-card p {
  color: #234352;
  font-size: 1.01em;
  margin: 0;
}
@media (max-width: 900px) {
  .features-grid, .testimonials {
    gap: 18px;
  }
  .feature-item, .testimonial-card {
    min-width: 160px;
    padding: 15px;
  }
}
@media (max-width: 600px) {
  .features-grid, .testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .feature-item, .testimonial-card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    padding: 14px 10px 14px 14px;
  }
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(35,67,82,0.045);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.15s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px 0 rgba(35,67,82,0.10);
  transform: translateY(-3px) scale(1.02);
}

.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-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

/***** MENU PAGE LISTS & SECTIONS *****/
.menu-section h3 {
  margin-top: 20px;
  font-size: 1.11rem;
  color: #D88D1C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.menu-section ul {
  padding-left: 1.35em;
  margin-bottom: 14px;
}
.menu-section li {
  list-style: disc inside;
  margin-bottom: 8px;
  font-size: 1.01em;
}
.dish-highlights {
  background: #F3F9F6;
  border-radius: 12px;
  margin-top: 18px;
  padding: 14px 18px 10px 18px;
  font-size: 1em;
}
.dish-highlights ul {
  list-style: circle inside;
  margin-bottom: 0;
}

/**** ORDER ONLINE STEPS ****/
.order-steps {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
.order-steps li {
  margin-bottom: 0.8em;
}

/**** CTA SECTIONS ****/
.cta {
  background: #234352;
  color: #fff;
  border-radius: 22px;
  text-align: center;
  padding: 48px 0;
  margin-bottom: 0;
}
.cta .container {
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-button {
  margin-top: 18px;
  background: #D88D1C;
  color: #fff;
  transition: background 0.16s, color 0.18s, transform 0.11s;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #fff;
  color: #234352;
}
@media (max-width: 600px) {
  .cta {
    border-radius: 12px;
    padding: 25px 0;
  }
}

/***** CONTACT PAGE *****/
.contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
  font-size: 1.05em;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.brand-values {
  margin-bottom: 0;
  font-size: 1.03em;
}
.brand-values li {
  margin-bottom: 10px;
}

/***** FOOTER *****/
footer {
  background: #fff;
  border-top: 1px solid #F3F9F6;
  padding-top: 32px;
  color: #234352;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer-logo {
  margin-bottom: 14px;
  min-width: 90px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  font-size: 15px;
  color: #234352;
  padding: 4px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #D88D1C;
  text-decoration: underline;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14.5px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-bottom {
  padding: 19px 0 8px 0;
  background: #fff;
  color: #90A4AE;
  border-top: 1px solid #F3F9F6;
  font-size: 13.5px;
  margin-top: 26px;
}
.footer-bottom .container {
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-bottom .container {
    flex-direction: column;
  }
}

/***** BUTTON STYLES *****/
button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #234352;
  border: 1.2px solid #F3F9F6;
  border-radius: 24px;
  font-size: 1rem;
  padding: 9px 22px;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.16s, border 0.18s, transform 0.12s;
}
button:active {
  transform: scale(0.97);
}
button:focus {
  border-color: #D88D1C;
}

/***** TABLES (for policy pages if needed) *****/
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2em;
  font-size: 1em;
  background: #fff;
}
th, td {
  border: 1px solid #F3F9F6;
  padding: 14px 10px;
  text-align: left;
}
th {
  background: #F3F9F6;
  color: #234352;
  font-weight: 600;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  width: 100vw;
  background: #234352;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 22px 0 18px 0;
  box-shadow: 0 -4px 26px 0 rgba(35,67,82,0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.2s cubic-bezier(.55,.06,.29,.96), transform 0.3s cubic-bezier(.7,.12,.23,.84);
  font-size: 1.04em;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 1;
  max-width: 500px;
  line-height: 1.55;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  padding: 8px 22px;
  background: #D88D1C;
  color: #fff;
  border: none;
  font-weight: 600;
  margin: 0;
  box-shadow: 0 2px 9px 0 rgba(35,67,82,0.04);
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #234352;
  border: 1px solid #F3F9F6;
}
.cookie-banner button.cookie-settings-btn {
  background: #F3F9F6;
  color: #234352;
  border: none;
}
.cookie-banner button:hover,
.cookie-banner .cookie-settings-btn:hover {
  background: #234352;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding-left: 12px; padding-right: 12px;
  }
  .cookie-banner__text {
    margin-right: 0;
    text-align: center;
    max-width: 99vw;
  }
  .cookie-banner__actions {
    justify-content: center;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  background: rgba(35,67,82,.34);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(.87,.13,.38,1.07);
}
.cookie-modal-overlay.show {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 9px 50px 0 rgba(35,67,82,0.24);
  padding: 34px 38px 28px 38px;
  max-width: 390px;
  width: 90vw;
  color: #234352;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.36s cubic-bezier(.87,.13,.38,1.07);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.92) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.33rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 1rem;
  border-bottom: 1px solid #F3F9F6;
}
.cookie-category-row:last-child {
  border-bottom: 0;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #F3F9F6;
  border-radius: 13px;
  position: relative;
  outline: none;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: 0 2.5px 7px 0 rgba(35,67,82,0.08);
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: #D88D1C;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 3px; top: 2.3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(35,67,82,0.07);
  transition: left 0.16s;
}
.cookie-toggle:checked::before {
  left: 18px;
}
.cookie-category-row .cookie-essential {
  font-size: 0.99em;
  font-weight: 600;
  color: #234352;
  opacity: 1;
}
.cookie-category-row .cookie-essential-badge {
  font-size: 0.88em;
  color: #D88D1C;
  margin-left: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal__actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 16px;
  padding: 7px 18px;
  font-weight: 600;
  font-size: 0.98rem;
  background: #D88D1C;
  color: #fff;
  border: none;
}
.cookie-modal__actions .cookie-reject {
  background: #fff;
  color: #234352;
  border: 1px solid #F3F9F6;
}
.cookie-modal__actions .cookie-cancel {
  background: #F3F9F6;
  color: #234352;
  border: none;
}
.cookie-modal__actions button:hover,
.cookie-modal__actions button:focus {
  background: #234352;
  color: #fff;
}
@media (max-width: 400px) {
  .cookie-modal {
    padding: 18px 2vw 17px 2vw;
    font-size: 1em;
  }
}

/***** THANK YOU PAGE (cta-group) *****/
.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

/***** SMOOTH MICRO-INTERACTIONS *****/
.card, .feature-item, .testimonial-card, .cta-button, button {
  transition: box-shadow 0.14s, transform 0.13s, background 0.17s, color 0.16s;
}

/***** OVERRIDE SPACING FOR SECTION GAPS *****/
@media (min-width: 769px) {
  section + section {
    margin-top: 0;
  }
}

/***** PRINT FRIENDLY *****/
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none;
  }
  section, main {
    padding: 0;
    background: #fff;
    color: #000;
  }
}

/***** ACCESSIBILITY FOCUSED OUTLINE *****/
:focus-visible {
  outline: 2px solid #D88D1C;
  outline-offset: 2px;
}

/***** HIDE WHEN JS ENABLED FOR MOBILE MENU/Cookie *****/
.js-hide {
  display: none !important;
}

/***** END OF CSS *****/
