/* === 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #F6F0E5;
  color: #222223;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: #B39B6D;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #7A6240;
  outline: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 700;
}
h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

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

/* === LAYOUT CONTAINERS & SPACING === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.card-container,
.card-grid,
.feature-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-grid > li,
.card,
.card-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(42,39,32, 0.07);
  border: 1.5px solid #f0e7d3;
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.feature-grid > li:hover {
  box-shadow: 0 9px 40px rgba(179,155,109,0.08), 0 3px 16px rgba(59, 57, 50, 0.08);
  transform: translateY(-4px) scale(1.025);
}

@media (max-width: 900px) {
  .feature-grid,
  .card-grid,
  .card-container,
  .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid,
  .card-grid,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > li,
  .card {
    min-width: 0;
    width: 100%;
    padding: 26px 18px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.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;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER STYLE === */
header {
  background: #fff;
  border-bottom: 2px solid #f0e7d3;
  box-shadow: 0 3px 14px rgba(34,34,35,0.04);
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: #222223;
  padding: 8px 13px;
  border-radius: 12px;
  transition: background 0.18s, color 0.14s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  background: #F6F0E5;
  color: #B39B6D;
}

.btn-primary {
  background: #B39B6D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 35px;
  box-shadow: 0 3px 18px rgba(34, 34, 35, 0.08);
  font-size: 1.07rem;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  display: inline-block;
  margin-left: 18px;
  border: 2px solid #B39B6D;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #B39B6D;
  transform: translateY(-2px) scale(1.03);
  border-color: #B39B6D;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #B39B6D;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: #fff;
  border: 2px solid #B39B6D;
  box-shadow: 0 2px 12px rgba(34,34,35,0.08);
  margin-left: 10px;
  transition: background 0.15s, color 0.12s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #fff;
  color: #B39B6D;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,35,0.94);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  background: #B39B6D;
  border: none;
  border-radius: 50%;
  font-size: 2.15rem;
  width: 52px;
  height: 52px;
  margin: 24px 0 8px 22px;
  align-self: flex-start;
  z-index: 1201;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
  transition: background 0.16s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #B39B6D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0 0 34px;
  width: 82vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 16px 10px;
  border-radius: 12px;
  transition: background 0.15s, color 0.14s;
  min-width: 180px;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B39B6D;
  background: rgba(246,240,229, 0.15);
}

/* Make sure mobile menu covers everything on mobile. */
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* === HERO BANNER === */
.hero {
  background: linear-gradient(105deg, #fff 60%, #F6F0E5 100%);
  border-bottom: 2px solid #f0e7d3;
  padding: 68px 0 44px 0;
  display: flex;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 270px;
}
.hero h1 {
  color: #222223;
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.hero p {
  color: #7A6240;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 20px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero .container {
    min-height: 120px;
  }
}

/* === FEATURES & CARDS === */
.features, .services {
  background: #fff;
  padding: 50px 0 44px 0;
  border-bottom: 1.5px solid #f0e7d3;
}
.features .feature-grid, .services .feature-grid {
  margin-top: 22px;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.feature-grid h3 {
  margin-bottom: 4px;
  color: #B39B6D;
}
.feature-grid p {
  color: #392f23;
  font-size: 1rem;
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #F6F0E5;
  padding: 56px 0 36px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(34, 34, 35, 0.09);
  border-left: 6px solid #B39B6D;
  padding: 28px 28px 22px 28px;
  margin-bottom: 20px;
  min-width: 266px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #222223;
}
.testimonial-card p {
  color: #222223;
  font-size: 1.05rem;
}
.testimonial-card span,
.testimonial-card strong {
  color: #B39B6D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .testimonial-slider {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 18px 12px 16px 16px;
  }
}

/* === CTA SECTION === */
.cta {
  background: #fff;
  text-align: center;
  padding: 54px 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 16px rgba(34,34,35,0.07);
}
.cta .btn-primary {
  margin-top: 20px;
}

/* === ABOUT/LEGAL SECTIONS === */
.about, .legal, .contact-details, .confirmation {
  background: #F6F0E5;
  padding: 40px 0 28px 0;
}

/* === FOOTER === */
footer {
  background: #222223;
  color: #fff;
  padding: 60px 0 30px 0;
  font-size: 1rem;
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer img {
  height: 44px;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.13s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #B39B6D;
  color: #fff;
  opacity: 1;
}
.social-links {
  display: flex;
  gap: 16px;
  margin: 8px 0 0 0;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: brightness(0.93);
  transition: filter 0.15s, transform 0.15s;
}
.social-links a:hover img,
.social-links a:focus img {
  filter: brightness(1.15) drop-shadow(0 2px 7px #B39B6D88);
  transform: scale(1.08);
}
footer address {
  font-style: normal;
  font-size: 0.96rem;
  margin-top: 7px;
  color: #F6F0E5;
}
footer address a {
  color: #B39B6D;
}
footer address img {
  height: 18px;
  width: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
footer small {
  color: #e0cfa6;
  opacity: 0.75;
  margin-top: 12px;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  footer {
    padding: 34px 0 14px 0;
  }
  .footer-nav {
    gap: 9px;
  }
  .social-links {
    gap: 8px;
  }
}

/* === LEGAL/TEXT SECTIONS === */
.legal, .confirmation {
  background: #fff;
  border-radius: 20px;
  margin: 36px 0;
  padding: 38px 0 32px 0;
  box-shadow: 0 3px 22px rgba(34,34,35,0.06);
}
.legal .text-section, .confirmation .content-wrapper, .about .text-section {
  background: none;
  color: #222223;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.legal ul, .about ul {
  list-style: inside disc;
  margin-left: 24px;
}
.legal a, .about a {
  color: #B39B6D;
  font-weight: 500;
}
.legal a:hover, .about a:focus {
  text-decoration: underline;
}

/* === CONTACT DETAILS === */
.contact-details {
  padding: 22px 0 18px 0;
  background: #fff6e3;
}
.contact-details .text-section p, .contact-details .text-section a {
  color: #222223;
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.contact-details .text-section img {
  height: 19px;
  width: 19px;
  vertical-align: middle;
  margin-right: 4px;
}

/* === BUTTON UTILS === */
.btn-secondary {
  background: #fff;
  color: #B39B6D;
  border: 2px solid #B39B6D;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 35px;
  font-size: 1rem;
  padding: 11px 26px;
  font-weight: 500;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B39B6D;
  color: #fff;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1700;
  background: rgba(246, 240, 229, 0.98);
  color: #222223;
  border-top: 2px solid #B39B6D;
  box-shadow: 0 -4px 20px rgba(34,34,35,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 28px 16px;
  gap: 26px;
  flex-direction: row;
  animation: banner-in 0.43s cubic-bezier(0.77, 0, 0.18, 1);
}
@keyframes banner-in {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  max-width: 550px;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 36px;
  font-size: 1rem;
  min-width: 124px;
  border: 2px solid #B39B6D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: background 0.17s, color 0.17s;
  margin: 0 2px;
}
.cookie-banner .accept {
  background: #B39B6D;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #B39B6D;
}
.cookie-banner .reject {
  background: #fff;
  color: #B39B6D;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #B39B6D;
  color: #fff;
}
.cookie-banner .settings {
  border-color: #b39b6d88;
  background: #f9f6ee;
  color: #7A6240;
  font-size: 0.98rem;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #fff;
  color: #B39B6D;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 6px 24px 6px;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,35, 0.92);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.77,0,0.18,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  animation: modal-in 0.42s cubic-bezier(0.77,0,0.18,1);
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #222223;
  border-radius: 19px;
  max-width: 440px;
  width: 95vw;
  box-shadow: 0 8px 48px rgba(179,155,109,0.13);
  padding: 38px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: #fff;
  color: #B39B6D;
  border: 2px solid #B39B6D;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #B39B6D;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #eee3ca;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-label {
  flex: 1 1 auto;
  font-weight: 600;
  color: #7A6240;
  font-size: 1.06rem;
}
.cookie-toggle {
  position: relative;
  width: 46px;
  height: 22px;
}
.cookie-toggle input {
  opacity: 0;
  width: 46px;
  height: 22px;
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  cursor: pointer;
}
.cookie-slider {
  background: #e1d3b7;
  border-radius: 21px;
  width: 46px;
  height: 22px;
  position: absolute;
  top: 0; left: 0;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #B39B6D;
}
.cookie-slider:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.18s;
  box-shadow: 0 3px 12px rgba(179,155,109,0.09);
}
.cookie-toggle input:checked + .cookie-slider:before {
  left: 26px;
}
.cookie-category-desc {
  font-size: 0.94rem;
  color: #392f23;
  margin-top: 2px;
}
.cookie-category .cookie-toggle[disabled],
.cookie-toggle input[disabled] + .cookie-slider {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 14px;
}
.cookie-modal-actions button {
  padding: 10px 24px;
}

@media (max-width: 540px) {
  .cookie-modal .cookie-modal-content {
    padding: 19px 7vw 20px 7vw;
  }
}


/* === ACCESSIBLE FOCUS/OUTLINE FOR INTERACTION === */
:focus-visible {
  outline: 2px solid #B39B6D;
  outline-offset: 2px;
}

/* === SCROLLBAR BRANDING (for webkit browsers) === */
::-webkit-scrollbar {
  width: 10px;
  background: #f8efe0;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #c2b194;
  border-radius: 10px;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-gold { color: #B39B6D; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }

/* === RESPONSIVE GENERAL === */
@media (max-width: 700px) {
  .container { padding: 0 8px; }
  .section { padding: 26px 5px; margin-bottom: 34px; }
  .content-wrapper { gap: 11px; }
}

/* === ANIMATIONS AND MICRO-INTERACTIONS === */
.btn-primary, .btn-secondary, .footer-nav a, .mobile-nav a, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.18s, color 0.17s, box-shadow 0.17s, transform 0.17s;
}
.card, .feature-grid > li, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 40px rgba(179,155,109,0.10), 0 5px 18px rgba(59, 57, 50, 0.12);
  transform: translateY(-4px) scale(1.025);
}

/* === ENSURE NO ELEMENTS OVERLAP & LUXURY DETAILS === */
.section, .card, .testimonial-card, .feature-grid > li {
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(179,155,109,0.04), 0 1.5px 3px rgba(34,34,35,0.05);
}

/* Gold accent bar */
.section > .container > .content-wrapper > h2:after,
.hero .content-wrapper > h1:after {
  content: '';
  display: block;
  width: 54px;
  height: 3.5px;
  border-radius: 3px;
  background: #B39B6D;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .section > .container > .content-wrapper > h2:after,
  .hero .content-wrapper > h1:after {
    width: 34px; height: 2.5px; margin-top: 7px;
  }
}

/* End of CSS */
