/* =============== 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #EBF0F4;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #204455;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B86B1B;
  outline-offset: 2px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  border-radius: 6px;
  border: 1px solid #CCD6DB;
  padding: 10px 12px;
  background: #fff;
  color: #204455;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B86B1B;
  outline: none;
}

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

/* =============== ROOT & BRAND COLORS =============== */
:root {
  --primary: #204455;
  --secondary: #FFFFFF;
  --tertiary: #EBF0F4;
  --accent: #B86B1B;
  --accent-gold: #DA892A;
  --shadow: 0 4px 16px rgba(34,45,63,0.08);
  --radius: 14px;
}

/* =============== GENERAL TYPOGRAPHY =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #204455;
  font-weight: 700;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.22;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
p, ul, ol, li, th, td, input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #204455;
}
strong {
  font-weight: 700;
}

/* =============== HEADERS =============== */
header {
  background: var(--secondary);
  box-shadow: 0 2px 8px rgba(32,68,85,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1220px;
  margin: 0 auto;
  height: 78px;
}
header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  color: #204455;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-bottom 0.23s;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.cta-primary {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 11px 36px;
  background: linear-gradient(92deg, #DA892A 20%, #B86B1B 95%);
  color: #fff;
  border: none;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(186,137,42,0.08);
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  display: inline-block;
  margin-left: 36px;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(93deg, #B86B1B 22%, #DA892A 97%);
  box-shadow: 0 5px 16px rgba(186,137,42,0.15);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #204455;
  margin-left: 18px;
  z-index: 120;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}

/* =============== MOBILE MENU =============== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 380px;
  background: #fff;
  box-shadow: -3px 0 36px rgba(0,0,0,0.16);
  transform: translateX(102%);
  transition: transform 0.4s cubic-bezier(.5,.2,.35,1.05);
  z-index: 2100;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  font-size: 2rem;
  color: #204455;
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  border-radius: 50%;
  transition: background 0.15s;
  width: 44px; height: 44px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(218,137,42,0.08);
  outline: 2px solid #B86B1B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 34px 0 34px 0;
  padding-left: 40px;
}
.mobile-nav a {
  font-size: 1.13rem;
  font-family: 'Montserrat',Arial,sans-serif;
  color: #204455;
  padding: 9px 0;
  border-radius: 6px;
  font-weight: 500;
  transition: color 0.24s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: linear-gradient(92deg,#DA892A 18%,#B86B1B 80%);
  outline: none;
}

/* =============== GENERAL LAYOUTS & CONTAINERS =============== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  padding: 32px 30px;
  background: var(--secondary);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main > section {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(32,68,85,0.10);
}
.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-left: 4px solid var(--accent-gold);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(32,68,85,0.10);
  margin-bottom: 20px;
  flex-direction: column;
  max-width: 640px;
}
.testimonial-card p {
  color: #182A32;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: .99rem;
  color: #98713b;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  margin-bottom: 18px;
}

/* LISTS & TABLES */
ul, ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 11px;
  line-height: 1.6;
}
ol {
  list-style-type: decimal;
}
/* Table styling for premium look */
table {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
thead tr {
  background: #F4EDE3;
}
th, td {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 15px 12px;
  border-bottom: 1px solid #e5e0d7;
  font-size: 1rem;
}
th {
  color: #B86B1B;
  font-weight: 700;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* =============== SPECIAL ELEMENTS (Home/FAQ/Etc.) =============== */
.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.stat-grid > div {
  background: #fffbe8;
  padding: 32px 20px 22px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 180px;
  min-width: 172px;
  text-align: center;
}
.stat-grid h3 {
  font-size: 2rem;
  color: #B86B1B;
  margin-bottom: 8px;
}
.stat-grid p {
  color: #8C785A;
  font-size: 1.03rem;
}
.restaurant-highlights {
  margin-top: 20px;
  background: #fff6e8;
  color: #98713b;
  border-left: 4px solid #B86B1B;
  padding: 14px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

.step-indicator {
  margin: 25px 0 15px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.step-indicator ol {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: center;
  padding: 0;
}
.step-indicator li {
  background: #F8F8F8;
  border-radius: 40px;
  padding: 10px 18px;
  color: #B86B1B;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
}

.service-price {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B86B1B;
  font-weight: 700;
  margin-left: 16px;
}

/* =============== FOOTER =============== */
footer {
  background: #FFF;
  padding: 35px 0 18px 0;
  margin-top: 42px;
  border-top: 1px solid #eee;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 7px;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 0;
}
footer nav a {
  color: #888;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.22s;
}
footer nav a:hover, footer nav a:focus {
  color: #B86B1B;
  text-decoration: underline;
}
.footer-top p {
  color: #AAA;
  margin: 0;
  font-size: .96rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* =============== SPACING AND FLEX ALIGNMENT PATTERNS =============== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============== BUTTONS & INTERACTIVES =============== */
button, .cta-primary, input[type="submit"] {
  transition: box-shadow 0.2s, background 0.18s, color 0.18s, transform 0.13s;
  cursor: pointer;
}
input[type="submit"] {
  font-family: 'Montserrat',Arial,sans-serif;
  background: linear-gradient(85deg,#B86B1B 30%,#DA892A 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 33px;
  padding: 11px 32px;
  font-size: 1rem;
  margin-top: 12px;
}
input[type="submit"]:hover, input[type="submit"]:focus {
  background: linear-gradient(93deg,#DA892A 12%,#B86B1B 97%);
}

/* =============== RESPONSIVE DESIGN (MOBILE-FIRST) =============== */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .content-wrapper {
    padding: 21px 8px 27px 8px;
  }
  header .container {
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  /* Burger menu visible */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header nav, header .cta-primary {
    display: none !important;
  }
  header .container {
    height: 65px;
    min-height: 65px;
  }
  .container, .content-wrapper {
    padding-left: 9px;
    padding-right: 9px;
  }
  .content-wrapper {
    padding-top: 17px;
    padding-bottom: 16px;
    gap: 13px;
  }
  .card-container, .stat-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section {
    margin-bottom: 33px;
    padding: 18px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 96vw;
    padding: 14px 8px;
    gap: 12px;
  }
  .footer-top, footer nav {
    flex-direction: column;
    gap: 10px;
  }
  .card {
    padding: 18px 8px;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .cta-primary, input[type=submit] {
    font-size: 0.98rem;
    padding: 8px 16px;
  }
}

/* =============== COOKIE CONSENT BANNER =============== */
.cookie-consent-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff8f0;
  color: #204455;
  padding: 16px 20px 16px 32px;
  box-shadow: 0 -2px 18px 0 rgba(32,68,85,0.1);
  z-index: 3000;
  font-size: 1rem;
  animation: cookiebannerin 0.6s cubic-bezier(.5,1,0.5,1.05);
}
@keyframes cookiebannerin {
  from { transform: translateY(70px); opacity: 0;}
  to { transform: none; opacity: 1; }
}
.cookie-consent-banner p {
  flex: 1 1;
  margin-right: 18px;
  font-size: 1rem;
}
.cookie-consent-actions {
  display: flex;
  gap: 11px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: none;
  background: #F2E5C4;
  color: #B86B1B;
  transition: background 0.19s, color 0.15s;
}
.cookie-btn.accept {
  background: linear-gradient(89deg,#B86B1B 10%,#DA892A 90%);
  color: #fff;
}
.cookie-btn.reject {
  background: #f7f0e0;
  color: #B86B1B;
}
.cookie-btn.settings {
  background: #EBF0F4;
  color: #204455;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(92deg,#DA892A 22%,#B86B1B 94%);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f0e1c9;
  color: #B86B1B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e5e9ee;
}

/* Cookie ModalOverlay */
.cookie-modal-overlay {
  background: rgba(25,42,38,0.35);
  z-index: 3200;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookiemodalin 0.42s cubic-bezier(.65,1,.7,1.1);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes cookiemodalin {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #204455;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(38,36,32,0.13);
  max-width: 410px;
  width: 94vw;
  padding: 37px 32px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiemodalfadein 0.42s cubic-bezier(.65,1,.7,1.1);
  position: relative;
}
@keyframes cookiemodalfadein {
  from { transform: translateY(60px); opacity: 0;}
  to   { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: none;
  font-size: 1.7rem;
  color: #204455;
  border-radius: 50%;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eee;
  color: #B86B1B;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0 8px 0;
  border-bottom: 1px dashed #e2d6be;
}
.category-row:last-child {
  border-bottom: none;
}
.category-row .label {
  font-family: 'Open Sans',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #204455;
}
.category-row .desc {
  font-size: .98rem;
  color: #888;
  margin-left: 11px;
}
.cookie-toggle {
  appearance: none;
  display: inline-block;
  width: 40px; height: 22px;
  border-radius: 14px;
  background: #e2e3e7;
  border: 1px solid #B8BBC1;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle:checked {
  background: linear-gradient(89deg,#B86B1B 10%,#DA892A 80%);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(.63,1.6,.55,.82);
  box-shadow: 0 2px 3px #eee;
}
.cookie-toggle:checked:before {
  transform: translateX(17px);
}
.cookie-toggle[disabled], .category-row .disabled {
  opacity: 0.68;
}

/* =============== LUXURY PREMIUM ACCENTS =============== */
.accent-gold {
  color: #B86B1B;
}
.gold-bg {
  background: linear-gradient(101deg, #DA892A, #B86B1B);
  color: #fff;
}
.gold-border {
  border-color: #B86B1B !important;
}
/* Subtle shadow for premium elements */
.premium-shadow {
  box-shadow: 0 8px 32px rgba(186,137,42,0.15);
}

/* =============== ACCESSIBILITY & SELECTION =============== */
::selection {
  background: #FFEFCB;
  color: #204455;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #B86B1B;
  outline-offset: 2px;
}

/* =============== MISC =============== */
::-webkit-input-placeholder { color:#b2b5be; opacity:1; }
::-moz-placeholder { color:#b2b5be; opacity:1; }
:-ms-input-placeholder { color:#b2b5be; opacity:1; }
::placeholder { color:#b2b5be; opacity:1; }

/* =============== END =============== */
