/* === 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;
}

/* Normalize styles for html5 elements */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFF7F2;
  color: #2A2F36;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
ul, ol {
  list-style: none;
}
a {
  color: #B08D57;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2A2F36;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: #2A2F36;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: .5px;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
.subheadline {
  color: #6E573A;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}

p, li, address, td, th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2A2F36;
  line-height: 1.7;
}
strong {
  font-weight: 600;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}

/* === HEADER & NAVIGATION === */
header {
  background: #FFF3E6;
  box-shadow: 0 2px 24px rgba(176, 141, 87, 0.04);
  padding: 0;
  border-bottom: 1px solid #EDEDED;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 20px;
}
header a img {
  max-height: 36px;
  border-radius: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
}
.main-nav a {
  padding: 10px 0;
  font-size: 1rem;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta {
  background: #B08D57;
  color: #fff;
  padding: 10px 22px;
  border-radius: 32px;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(176,141,87,.15);
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #2A2F36;
  color: #fff;
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: #F6E1C8;
  color: #B08D57;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #B08D57;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #2A2F36;
}

/* === MOBILE NAVIGATION MENU === */
.mobile-menu {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF7F2;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.85,.05,.395,.99);
  box-shadow: 4px 0 24px rgba(176,141,87,0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #B08D57;
  align-self: flex-end;
  margin: 20px 24px 8px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2A2F36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 10px 24px 40px 40px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 10px 0;
  color: #2A2F36;
  border-radius: 10px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6E1C8;
  color: #B08D57;
}

/* === HERO SECTION === */
.hero {
  background: #FFF3E6;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 6px 22px rgba(176,141,87, .10);
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  display: flex;
  align-items: center;
  min-height: 360px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: #B08D57;
  font-size: 2.5rem;
}
.hero .cta {
  margin-top: 28px;
}

/* === SECTIONS & CARDS === */
.section, .services, .features, .pricing, .about, .testimonials, .legal, .confirmation, .contact-info, .contact-short {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 26px rgba(176,141,87, 0.07);
}
.features, .pricing {
  background: #FFF7F2;
}

/* Card containers & layouts */
.card-container, .feature-grid, .testimonial-carousel, .content-grid, .contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(176,141,87,0.12);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  min-width: 220px;
  transition: box-shadow 0.24s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px rgba(176,141,87,0.21);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.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;
}
/* pattern: .feature-item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px rgba(176,141,87,0.10);
  padding: 24px 20px 18px 20px;
  min-width: 210px;
  transition: box-shadow 0.19s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 30px rgba(176,141,87,0.17);
}
.feature-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF7F2;
  object-fit: contain;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  position: relative;
  padding-left: 36px;
  min-height: 32px;
  display: flex;
  align-items: center;
  color: #2A2F36;
  font-size: 1rem;
}
.feature-list img {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.feature-list span {
  display: block;
}

/* Service inclusions list */
.service-inclusions {
  margin: 32px 0 18px 0;
  font-size: 1rem;
  color: #725731;
}
.service-inclusions li {
  margin-bottom: 10px;
}

/* Product/brand logo group */
.brand-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 26px;
}
.brand-logos img {
  width: 52px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(85, 58, 17, 0.12);
  background: #fff;
  padding: 6px 10px;
}

.quality-guarantee {
  display: flex;
  align-items: center;
  background: #FFF7F2;
  border-radius: 16px;
  padding: 16px 24px;
  margin: 26px 0 0 0;
  font-size: 1.05rem;
  color: #2A2F36;
  font-weight: 500;
  box-shadow: 0 2px 7px rgba(131,106,49,0.10);
  gap: 14px;
}
.quality-guarantee img {
  width: 32px;
}

/* =========== PRICING TABLE =========== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(176,141,87,0.09);
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px;
  font-size: 1rem;
  color: #2A2F36;
  text-align: left;
}
.pricing-table th {
  background: #FFF7F2;
  color: #B08D57;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}
.pricing-table tr {
  border-bottom: 1px solid #F3E6D3;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #FFF7F2;
  border-radius: 32px;
  box-shadow: 0 4px 22px rgba(176,141,87,0.07);
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(176,141,87,0.12);
  min-width: 260px;
  max-width: 425px;
  transition: box-shadow 0.21s, transform .14s;
  position: relative;
  color: #2A2F36;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px rgba(176,141,87,0.19);
  transform: translateY(-2px);
}
.testimonial-card .stars img {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}
.testimonial-card p {
  font-size: 1.03rem;
  line-height: 1.5;
  margin: 0 0 4px 0;
  color: #453816;
}
.testimonial-author {
  font-size: .95em;
  color: #B08D57;
  font-style: italic;
}

/* ========== CONTACT, FOOTER ========== */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.contact-info-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(176,141,87,0.11);
  padding: 18px;
  min-width: 190px;
  gap: 7px;
}
.contact-info-grid img {
  width: 24px;
  height: 24px;
  margin-bottom: 3px;
}
.address, .contact-snippet, .map, .opening-hours {
  margin-bottom: 20px;
}
.cta-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
footer {
  background: #2A2F36;
  color: #fff;
  padding: 34px 0 14px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: .85;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: opacity 0.2s, color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: #B08D57;
}
.footer-brand {
  font-size: 0.98rem;
  opacity: .8;
}

/* ========== BUTTONS / CTA ========== */
.cta, .btn, button, input[type=submit], input[type=button] {
  background: #B08D57;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 28px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .05em;
  box-shadow: 0 2px 14px rgba(176,141,87,.10);
  cursor: pointer;
  text-align: center;
  outline: none;
  transition: background 0.2s, transform .14s, box-shadow 0.14s;
  margin: 2px 0;
  display: inline-block;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus, button:hover, button:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: #2A2F36;
  color: #fff;
  transform: translateY(-1px) scale(1.024);
  box-shadow: 0 6px 18px rgba(176,141,87,0.16);
}
.cta:active, .btn:active, button:active {
  transform: scale(0.98);
}

/* ====== FORMS ====== */
input, textarea, select {
  border-radius: 14px;
  border: 1px solid #E2D3B2;
  padding: 12px 18px;
  font-size: 1rem;
  outline: none;
  margin-bottom: 18px;
  background: #FFF9F3;
  color: #2A2F36;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(176,141,87,0.07);
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B08D57;
}
label {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
  color: #725731;
  font-size: 1rem;
}

/* ============== TABLES ============== */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1160px) {
  .container { max-width: 100%; }
}
@media (max-width: 920px) {
  .feature-grid, .card-container, .testimonial-carousel, .contact-info-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    height: 64px;
    padding-left: 10px; padding-right: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .brand-logos {
    gap: 14px;
  }
  .section, .services, .features, .pricing, .about, .testimonials, .legal, .confirmation, .contact-info, .contact-short {
    margin-bottom: 32px;
    padding: 28px 7px;
    border-radius: 16px;
  }
  .hero {
    border-radius: 0 0 24px 24px;
    min-height: 200px;
    padding: 18px 0 30px 0;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .feature-item {
    min-width: unset;
    padding: 16px 10px 13px 10px;
    border-radius: 11px;
  }
  .content-grid, .card-container, .testimonial-carousel, .contact-info-grid, .feature-grid {
    flex-direction: column;
    gap: 17px;
  }
  .card {
    min-width: unset;
    padding: 22px 14px;
    border-radius: 13px;
  }
  .testimonial-card { max-width: 100%; }
  .about .team-bios ul, .brand-values ul {
    padding-left: 14px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
}
@media (max-width: 580px) {
  html {
    font-size: 14px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* =========== ANIMATIONS & TRANSITIONS =========== */
.cta, .main-nav a.cta, .feature-item, .testimonial-card, .card {
  transition: box-shadow 0.21s, background 0.18s, color 0.18s, transform .13s;
}

/* ========== COOKIE CONSENT BANNER ========== */
#cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  z-index: 11000;
  background: #FFF3E6;
  box-shadow: 0 -3px 26px rgba(176,141,87,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px 16px;
  font-size: 1rem;
  letter-spacing: .03em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A2F36;
  border-radius: 18px 18px 0 0;
  animation: fadeInUp 0.7s cubic-bezier(.22, .72, .18, 1);
}
#cookie-consent-banner .cookie-btn-group {
  display: flex;
  gap: 13px;
  margin-left: 32px;
}
.cookie-btn {
  background: #B08D57;
  color: #fff;
  border-radius: 24px;
  padding: 8px 20px;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(176,141,87,.11);
  cursor: pointer;
  transition: background 0.18s, transform .12s, box-shadow .11s;
}
.cookie-btn.settings {
  background: #fff;
  border: 2px solid #B08D57;
  color: #B08D57;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2A2F36;
  color: #fff;
  box-shadow: 0 4px 16px rgba(176,141,87,0.18);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F6E1C8;
  color: #2A2F36;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cookie Preferences Modal */
#cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(63, 39, 16, 0.33);
  align-items: center;
  justify-content: center;
}
#cookie-modal.active {
  display: flex;
  animation: fadeInModal .28s ease-out;
}
#cookie-modal .modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(176,141,87,0.19);
  padding: 38px 26px 30px 26px;
  min-width: 320px;
  max-width: 95vw;
}
#cookie-modal h2 {
  font-size: 1.4rem;
  color: #B08D57;
  margin-bottom: 15px;
}
#cookie-modal .category {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 14px;
}
#cookie-modal .category label {
  font-size: 1.08em;
  margin-bottom: 0;
  color: #2A2F36;
}
#cookie-modal .toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  display: inline-block;
}
#cookie-modal .toggle-switch input[type=checkbox] {
  display: none;
}
#cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #EEE4D0;
  border-radius: 24px;
  transition: background 0.18s;
  width: 100%;
  height: 100%;
}
#cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #B08D57;
}
#cookie-modal .toggle-slider:before {
  content: '';
  position: absolute;
  height: 17px; width: 17px;
  left: 4px; top: 3.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 2px 8px rgba(176,141,87,0.08);
}
#cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(17px);
}
#cookie-modal .modal-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
#cookie-modal .category .locked {
  font-size: 1em;
  color: #B08D57;
  margin-left: 8px;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 19px; right: 34px;
  font-size: 2em;
  background: none;
  border: none;
  cursor: pointer;
  color: #B08D57;
  transition: color 0.2s;
}
#cookie-modal .modal-close:hover {
  color: #2A2F36;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ====== ACCESSIBILITY IMPROVEMENTS ====== */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #B08D57;
  outline-offset: 1px;
}

/* Utility classes */
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.hide { display: none !important; }

/* ===== BRAND CUSTOM PROPS for fallbacks ===== */
:root {
  --brand-primary: #2A2F36;
  --brand-secondary: #B08D57;
  --brand-accent: #EDEDED;
}

/* END */
