/* === 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background-color: #F4EFE8;
  color: #1C2A33;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1C2A33;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #B68B4C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  color: #1C2A33;
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 0.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.32rem;
  margin-bottom: 14px;
  line-height: 1.24;
  color: #B68B4C;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #1C2A33;
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #46515B;
  margin-bottom: 24px;
  line-height: 1.6;
}
p, li, dd {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 1em;
  color: #1C2A33;
}
strong {
  font-weight: 700;
  color: #1C2A33;
}
blockquote {
  font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  font-style: italic;
  color: #1C2A33;
  font-size: 1.15rem;
  border-left: 3px solid #B68B4C;
  padding-left: 18px;
  margin-bottom: 10px;
}
cite {
  display: block;
  font-size: 0.95rem;
  color: #B68B4C;
  font-style: normal;
}

/* === Container Layouts === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  max-width: 750px;
}

/* === Section Spacing & Layouts (MANDATORY) === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px rgba(28, 42, 51, 0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(182, 139, 76, 0.16);
  transform: translateY(-3px) scale(1.015);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28,42,51,0.07);
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 24px;
  max-width: 540px;
  border-left: 5px solid #B68B4C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Custom Grids for Features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28,42,51,0.07);
  padding: 26px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature img {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  filter: grayscale(45%) contrast(1.2);
}
.feature:hover {
  box-shadow: 0 6px 24px rgba(182, 139, 76, 0.12);
  transform: translateY(-2px) scale(1.01);
}

/* Service List */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-list li {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(28, 42, 51, 0.07);
  padding: 22px 20px 18px 20px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li h3 {
  color: #B68B4C;
}
.service-list li span {
  color: #1C2A33;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-top: 6px;
}

.faq-list {
  margin: 0 0 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list dt {
  font-family: 'Playfair Display', serif;
  font-size: 1.03rem;
  color: #1C2A33;
  font-weight: bold;
  margin-bottom: 2px;
  margin-top: 10px;
}
.faq-list dd {
  color: #46515b;
  margin-bottom: 8px;
  font-size: 0.99rem;
  margin-left: 16px;
}

ol {
  list-style: decimal inside;
  margin-bottom: 1em;
}

/* === Buttons & CTA === */
.cta-button {
  background: #B68B4C;
  box-shadow: 0 2px 12px rgba(182,139,76,0.08);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 0;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #1C2A33;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px rgba(28,42,51,0.16);
}
button, input[type="button"], input[type="submit"] {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #B68B4C;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.15s, color 0.16s, transform 0.12s;
}
button:hover, button:focus, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: #1C2A33;
  color: #fff;
  box-shadow: 0 6px 18px rgba(28,42,51,0.13);
  outline: none;
}

/* === Navigation === */
header {
  background: #fff;
  border-bottom: 1px solid #ece2cf;
  position: relative;
  z-index: 30;
}
.main-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 0 18px 0;
}
.main-navigation img {
  height: 36px;
  margin-right: 18px;
}
.main-navigation a {
  font-family: 'Playfair Display', serif;
  color: #1C2A33;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background 0.12s, color 0.13s;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #B68B4C;
  color: #fff;
}

/* === Footer === */
footer {
  background: #1C2A33;
  color: #fff;
  padding: 55px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 30px;
}
.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand-info img {
  height: 34px;
  filter: brightness(1.08) grayscale(15%);
  margin-bottom: 9px;
}
.footer-brand-info p {
  color: #ece2cf;
  font-size: 0.98rem;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  align-items: flex-end;
}
.footer-navigation a {
  color: #ece2cf;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  transition: color 0.14s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #B68B4C;
  text-decoration: underline;
}

/* === Mobile Navigation === */
.mobile-menu-toggle {
  background: #B68B4C;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 13px;
  right: 16px;
  z-index: 101;
  transition: background 0.13s, color 0.13s, transform 0.14s;
}
.mobile-menu-toggle:active {
  transform: scale(0.95);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1C2A33;
  z-index: 200;
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(0.7,0,0.3,1);
  box-shadow: 16px 0 32px rgba(28,42,51,0.17);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #B68B4C;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 18px 0 20px 20px;
  position: relative;
  left: 0;
  top: 0;
  align-self: flex-start;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 0 26px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.23rem;
  padding: 13px 0;
  border-radius: 11px;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #B68B4C;
  background: rgba(180,150,90,0.06);
}

/* === Responsive Styles === */
@media (max-width: 1119px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  section {
    margin-bottom: 38px;
    padding: 30px 8px 18px 8px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .feature, .service-list li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    padding-bottom: 12px;
    align-items: flex-start;
  }
  .footer-navigation {
    align-items: flex-start;
    min-width: 0;
    width: 100%;
    gap: 8px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.56rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.19rem;
    margin-bottom: 12px;
  }
  .cta-button {
    font-size: 1rem;
    padding: 13px 8vw;
  }
  section {
    margin-bottom: 22px;
    padding: 19px 2px 11px 2px;
  }
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: #fff6e9;
  color: #1C2A33;
  border-top: 1.5px solid #B68B4C;
  box-shadow: 0 -2px 16px rgba(180,139,76,0.13);
  padding: 26px 20px 19px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  animation: fadeIn 0.4s cubic-bezier(.7,0,.3,1);
}
@keyframes fadeIn {
  from { opacity:0; transform:translateY(50px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 4px;
}
.cookie-banner button {
  background: #B68B4C;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.16s, color 0.12s, box-shadow 0.14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1C2A33;
  color: #fff;
  outline: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  background: rgba(28,42,51,0.67);
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.27s cubic-bezier(.7,0,.3,1);
}
.cookie-modal {
  background: #fff6e9;
  border-radius: 17px;
  box-shadow: 0 8px 40px rgba(28,42,51,0.17);
  padding: 34px 24px 24px 24px;
  max-width: 400px;
  width: 100%;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  position: relative;
  animation: slideUp 0.32s cubic-bezier(.7,0,.3,1);
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-modal h3 {
  margin-bottom: 9px;
  font-size: 1.14rem;
  font-family: 'Playfair Display', serif;
  color: #B68B4C;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #f0e4cc;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1rem;
  color: #1C2A33;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
/* Toggle switches */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  margin-left: 12px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background: #ece2cf;
  border-radius: 16px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.16s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #B68B4C;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 2px 5px rgba(28,42,51,0.11);
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.cookie-modal .cookie-actions button {
  background: #B68B4C;
  color: #fff;
  border: none;
  padding: 9px 19px;
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, color 0.14s;
}
.cookie-modal .cookie-actions button:hover, .cookie-modal .cookie-actions button:focus {
  background: #1C2A33;
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-modal { max-width: 97vw; padding: 23px 6px 17px 7px; }
  .cookie-banner { padding: 17px 6px 12px 9px;}
}

/* === Utility & Visual Details === */
::-webkit-input-placeholder {color:#888; opacity:1;}
::-moz-placeholder {color:#888; opacity:1;}
:-ms-input-placeholder {color:#888; opacity:1;}
::placeholder {color:#888; opacity:1;}

hr {
  border: none;
  border-top: 1.5px solid #ece2cf;
  margin: 25px 0;
}

/* Card subtle hover-shadow */
.card, .feature, .service-list li {
  transition: box-shadow 0.19s, transform 0.19s;
}

.button-link {
  background: none;
  color: #B68B4C;
  border: none;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  cursor: pointer;
  text-decoration: underline;
}
.button-link:hover, .button-link:focus {
  color: #1C2A33;
  background: #ffeee5;
}

/* Hide visually but remain accessible */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;}

/* Animations for micro-interactions */
@media (prefers-reduced-motion: no-preference) {
  .cta-button, button, .feature, .card, .testimonial-card {
    transition: box-shadow 0.21s, background 0.15s, color 0.13s, transform 0.17s;
  }
}

/* === END === */

