/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  border-style: none;
}
button {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7F5;
  scroll-behavior: smooth;
}

/* BRAND FONTS (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  color: #272B35;
  background: linear-gradient(135deg, #F7F7F5 65%, #D0A255 100%);
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 32px -10px rgba(39,43,53,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #272B35;
  padding: 4px 10px;
  position: relative;
  transition: color 0.2s;
  border-radius: 5px;
}
header nav a:hover {
  color: #D0A255;
  background: rgba(208,162,85,0.10);
}
.cta-primary {
  background: linear-gradient(90deg, #D0A255 0%, #B8860B 100%);
  color: #fff !important;
  border-radius: 32px;
  font-weight: 700;
  padding: 10px 28px;
  font-size: 18px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px -6px rgba(208,162,85,0.11);
  transition: background 0.35s, box-shadow 0.3s, transform 0.08s;
  margin-left: 12px;
  outline: none;
  border: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #B8860B 0%, #D0A255 100%);
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px -2px rgba(208,162,85,0.18);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #fff 70%, #D0A255 160%) no-repeat;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 24px;
  text-align: left;
}
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #272B35;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: #272B35;
}
.hero .cta-primary {
  margin-top: 8px;
}

/* FEATURES SECTION */
.features {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 32px 0 rgba(39,43,53,0.07);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature {
  background: #F7F7F5;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(39,43,53,0.05);
  padding: 30px 22px 28px 22px;
  flex: 1 1 185px;
  min-width: 165px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.12s;
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 8px 32px -4px rgba(208,162,85,0.13), 0 1.5px 16px 0 rgba(39,43,53,0.06);
  transform: translateY(-3px) scale(1.03);
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature h3 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: #272B35;
}
.feature p {
  font-size: 16px;
  color: #474C57;
}

/* ABOUT & SERVICES etc. */
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: #D0A255;
  font-weight: 900;
  margin-top: 12px;
}
.text-section h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #272B35;
  margin-top: 6px;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  color: #474C57;
}
.text-section ul li,
.text-section ol li {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  line-height: 1.45;
  padding-left: 10px;
}
.text-section ul li::before {
  content: '\2022';
  color: #D0A255;
  position: absolute;
  left: -13px;
}
.text-section a {
  color: #D0A255;
  text-decoration: underline;
  transition: color 0.2s;
}
.text-section a:hover {
  color: #B8860B;
}

.cta-link {
  font-weight: 700;
  color: #D0A255;
  font-size: 1.06em;
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
  border-radius: 3px;
  transition: color 0.17s, background 0.14s;
}
.cta-link:hover {
  background: #fff0dc;
  color: #B8860B;
}

.services-preview ul, .services-preview ol, .about-preview ul, .about-preview ol {
  margin-left: 24px;
  color: #474C57;
}
.services-preview ul li, .services-preview ol li,
.about-preview ul li, .about-preview ol li {
  margin-bottom: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.faq-list h3 {
  color: #D0A255;
  font-size: 1.13em;
  margin-bottom: 3px;
  font-weight: 700;
}
.faq-list p {
  color: #474C57;
  font-size: 16px;
}

/* BRANDS LOGOS */
.brand-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin: 18px 0 24px 0;
}
.brand-logos-grid img {
  filter: grayscale(0.3) brightness(0.99);
  transition: filter 0.18s, transform 0.11s;
  height: 44px;
  margin-bottom: 0px;
  padding: 6px 9px;
  background: #f5f1ea;
  border-radius: 12px;
}
.brand-logos-grid img:hover {
  filter: none;
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 3px 16px -3px #D0A25544;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(96deg, #D0A255 30%, #F7F7F5 120%);
  padding: 36px 0 52px 0;
  text-align: center;
  border-radius: 18px;
  margin-top: 24px;
  margin-bottom: 60px;
}
.cta .cta-primary {
  font-size: 1.2rem;
  padding: 14px 36px;
  margin: 0 auto;
  display: inline-block;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 24px 0;
}
.testimonial-card {
  background: #fff;
  color: #272B35;
  border-radius: 18px;
  box-shadow: 0 1px 12px 0 rgba(39,43,53,0.09);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  max-width: 600px;
  position: relative;
  border-left: 5px solid #D0A255;
}
.testimonial-card blockquote {
  color: #272B35;
  font-family: 'Merriweather', serif;
  font-size: 1.13em;
  margin-bottom: 6px;
  margin-left: 0;
  font-weight: 500;
  line-height: 1.5;
}
.testimonial-card strong {
  color: #D0A255;
  font-size: 0.97em;
}

/* FOOTER */
footer {
  background: #272B35;
  color: #fff;
  padding: 34px 0 0 0;
}
footer .container {
  padding-bottom: 0;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #393C44;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 32px;
}
footer nav a {
  color: #fff4de;
  font-size: 15px;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #D0A255;
}
footer .text-section {
  color: #f3eddc;
  font-size: 15px;
  gap: 4px;
}
footer .text-section p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
footer .content-wrapper > a img {
  max-height: 48px;
}
footer > .container > .content-wrapper > div:last-child a {
  display: inline-block;
  margin-right: 8px;
  transition: transform 0.16s;
}
footer > .container > .content-wrapper > div:last-child a:hover {
  transform: scale(1.07) rotate(-5deg);
}
footer .content-wrapper > div:last-child img {
  width: 28px;
  height: 28px;
}
footer {
  margin-top: 60px;
}

/* ------------- LAYOUT/FLEXBOX SECTION ------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px -4px rgba(39,43,53,0.09);
  padding: 24px 20px;
  min-width: 220px;
}
.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;
}

/* ------------- MOBILE MENU ------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1111;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(39,43,53,0.13);
  font-size: 2.1rem;
  color: #D0A255;
  transition: background 0.18s, box-shadow 0.23s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #fff4e0;
  box-shadow: 0 4px 16px 0 rgba(208,162,85,0.10);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.69,0.01,0.43,1.02), opacity 0.23s;
  box-shadow: 0 10px 30px -6px #272B3538;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 26px 0 0;
  font-size: 2.2rem;
  background: #fff;
  color: #D0A255;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 1px 11px 0 rgba(208,162,85,0.08);
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #fff4de;
  color: #B8860B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 54px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #272B35;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.15s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F7F5;
  color: #D0A255;
}
@media (max-width:1080px) {
  header .container {
    gap: 16px;
  }
}
@media (max-width:920px) {
  header .container {
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 10px;
  }
  header nav {
    gap: 18px;
  }
  .brand-logos-grid {
    gap: 16px;
  }
  .features .feature {
    min-width: 140px;
  }
}
@media (max-width:800px) {
  header .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .brand-logos-grid {
    gap: 11px;
  }
  .feature {
    min-width: 120px;
  }
}
/* Hide header nav, show menu on mobile */
@media (max-width: 760px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none !important;
  }
  header .container {
    justify-content: flex-start;
    gap: 12px;
  }
  .footer .content-wrapper > * {
    gap: 16px;
  }
}
/* Responsive Section Layouts */
@media (max-width: 900px) {
  .content-wrapper {
    gap: 20px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 42px;
  }
  .feature {
    padding: 18px 10px;
  }
  .brand-logos-grid img {
    padding: 3px 5px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .features {
    padding: 24px 8px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    min-width: 130px;
    width: 100%;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .testimonial-card {
    width: 100%;
    gap: 10px;
    font-size: 1em;
  }
  .brand-logos-grid {
    flex-wrap: wrap;
    gap: 8px;
  }
  .brand-logos-grid img {
    min-width: 70px;
    height: 27px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .card-container {
    gap: 12px;
  }
  .card {
    padding: 14px 8px;
    min-width: 130px;
  }
  .cta .cta-primary {
    font-size: 1rem;
    padding: 10px 22px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.36rem;
  }
  .section {
    padding: 12px 0;
  }
  .testimonial-card {
    font-size: 0.96em;
    padding: 11px 7px;
    border-left: 3px solid #D0A255;
  }
  .cta {
    padding: 14px 0 24px 0;
    border-radius: 11px;
  }
  .container {
    padding: 0 7px;
  }
}

/* MAP EMBED */
.map-embed {
  width: 100%;
  border-radius: 12px;
  margin: 22px 0 0 0;
  background: #fffefb;
  padding: 32px 0;
  box-shadow: 0 2px 12px 0 rgba(39,43,53,0.04);
  text-align: center;
  color: #B8860B;
  font-size: 1.15em;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #272B35;
  color: #fff;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  box-shadow: 0 -3px 32px -12px #272B3580;
  border-radius: 18px 18px 0 0;
  z-index: 1600;
  transition: transform 0.34s cubic-bezier(0.43,1,0.67,1), opacity 0.38s;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  font-size: 16px;
  line-height: 1.32;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 17px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 21px;
  font-size: 0.99em;
  padding: 8px 22px;
  font-weight: 600;
  border: none;
  background: #fff;
  color: #272B35;
  margin-bottom: 0;
  transition: background 0.17s, color 0.16s, transform 0.07s;
}
.cookie-banner .cookie-settings-btn {
  background: #F7F7F5;
  color: #D0A255;
  border: 1px solid #E4DBC2;
  margin-left: 8px;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #D0A255;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,43,53,0.73);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px -10px #272B35bb;
  width: 94%;
  max-width: 410px;
  padding: 32px 20px 22px 20px;
  color: #272B35;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: fadeInUp 0.33s cubic-bezier(0.47,1.45,0.52,1);
  position: relative;
}
@keyframes fadeInUp {
  0% {
    opacity:0; transform: translateY(42px);
  }
  100% {
    opacity:1; transform: none;
  }
}
.cookie-modal-content h2 {
  font-family: 'Merriweather', serif;
  color: #D0A255;
  font-size: 1.28rem;
  font-weight: 900;
  margin-bottom: 7px;
}
.cookie-modal-content label {
  font-size: 1.04em;
  margin-left: 8px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #D0A255;
}
.cookie-modal-content .category-essential {
  font-weight: 600;
  color: #272B35;
}
.cookie-modal-content .category-essential input {
  pointer-events: none;
  background: #e2e5e9;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}
.cookie-modal-content button {
  border-radius: 19px;
  font-size: 1em;
  padding: 8px 20px;
  font-weight: 600;
  background: #D0A255;
  color: #fff;
  border: none;
  transition: background 0.17s, color 0.13s, transform 0.07s;
}
.cookie-modal-content button:focus, .cookie-modal-content button:hover {
  background: #272B35;
  color: #D0A255;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  border: none;
  color: #D0A255;
  font-size: 1.45rem;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:hover {
  color: #B8860B;
}

@media (max-width:420px) {
  .cookie-modal-content {
    padding: 13px 4px 10px 7px;
  }
  .cookie-modal-content h2 {
    font-size: 1.07rem;
  }
}

/* ------------- FINE DETAILS/MICROINTERACTIONS ------------- */
input, textarea, select {
  border-radius: 8px;
  border: 1px solid #E3E4E7;
  background: #fff;
  padding: 10px 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  outline: none;
  transition: border 0.18s;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  border-color: #D0A255;
}

/* Remove number buttons in inputs on mobile/webkit */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* ------------- ACCESSIBILITY (Focus states) ------------- */
a, button, .cta-primary, .cta-link, input, textarea, select {
  outline: none;
}
a:focus, button:focus, .cta-primary:focus {
  box-shadow: 0 0 0 3px #D0A25555;
}

/* ------------- UTILITIES ------------- */
.hide {
  display: none !important;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* --- END OF STYLE.CSS --- */