/* RESET & BASE TYPOGRAPHY ------------------------------------------ */
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;
  line-height: 1.5;
  background: #f8f8f8;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23282B;
  background: #FAFBFC;
  min-height: 100vh;
  font-size: 16px;
}
a {
  color: #23282B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C49F65;
  outline: none;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
}
ul li, ol li {
  margin-bottom: 0.6em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #23282B;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
}
section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(35,40,43,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
strong {
  font-weight: 700;
  color: #23282B;
}
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px;
}
/* FLEX LAYOUTS ----------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(35,40,43,0.04);
  overflow: hidden;
  flex: 1 1 320px;
  min-width: 280px;
  transition: box-shadow 0.26s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(196,159,101,0.13);
  z-index: 2;
}
.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: #f6f6f8;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(35,40,43,0.07);
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(196,159,101,0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* SECTION ROOM AND HIERARCHY --------------------------------- */
.content-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(35,40,43,0.056);
  padding: 26px 20px 24px 20px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 320px;
  transition: box-shadow 0.2s;
  border: 1.5px solid #e9e9ed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.feature img {
  width: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 0 #C49F65);
}
.feature h3 {
  color: #C49F65;
  font-size: 1.1rem;
}
.feature:hover {
  box-shadow: 0 10px 32px 0 rgba(196,159,101,0.11);
  border-color: #C49F65;
}
/* BUTTONS ------------------------------------------------- */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C49F65;
  color: #23282B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 36px;
  padding: 13px 36px;
  margin-top: 12px;
  margin-bottom: 4px;
  box-shadow: 0 2px 10px 0 rgba(196,159,101,0.08);
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.19s, color 0.14s;
  text-shadow: none;
  outline: none;
}
.button-primary:hover, 
.button-primary:focus {
  background: #23282B;
  color: #fff;
  box-shadow: 0 6px 24px #C49F6544, 0 1.5px 8px #23282B12;
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #C49F65;
  border: 2px solid #C49F65;
  border-radius: 36px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 28px;
  margin-top: 2px;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, border-color 0.2s;
}
.button-secondary:hover, 
.button-secondary:focus {
  background: #C49F65;
  color: #fff;
  border-color: #C49F65;
}
/* NAVIGATION -------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(35,40,43,0.06);
  border-bottom: 1.5px solid #f3f0ea;
  z-index: 40;
  position: sticky;
  top: 0;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 22px;
  padding: 0;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #23282B;
  font-size: 1rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.14s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: #C49F65;
  border-radius: 1.5px;
  transition: width 0.19s cubic-bezier(.52,.17,.36,1.06);
  margin-top: 3px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C49F65;
}
header img {
  height: 44px;
  width: auto;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #C49F65;
  display: none;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #efe7db;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 330px;
  max-width: 94vw;
  height: 100vh;
  background: #23282B;
  box-shadow: 6px 0 24px #0002;
  padding-top: 0;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1.12);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #C49F65;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 12px 18px 0 0;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #efe7db;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 35px;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  color: #fff;
  font-weight: 500;
  padding: 12px 2px;
  border-radius: 5px;
  transition: background 0.11s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C49F65;
  color: #23282B;
}
/* Hide navs as needed for mobile/desktop */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
/* FOOTER --------------------------------------------------- */
footer {
  background: #23282B;
  color: #CAD2DB;
}
.nav-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 50px 22px 16px 22px;
  border-top: 1.5px solid #ece8df;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #C49F65;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  color: #CAD2DB;
}
.footer-copy {
  width: 100%;
  margin-top: 18px;
}
.footer-copy p {
  text-align: center;
  color: #b0b8bd;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
footer img {
  height: 32px;
  margin-bottom: 8px;
}
/* TESTIMONIALS, BLOCKQUOTES --------------------------------- */
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  color: #23282B;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.35;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8A837A;
  font-size: 1rem;
  margin-left: 12px;
  align-self: flex-start;
}
blockquote {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
blockquote:before {
  color: #C49F65;
  content: open-quote;
  font-size: 2.3em;
  line-height: 0;
  vertical-align: -0.3em;
}
blockquote:after {
  color: #C49F65;
  content: close-quote;
  font-size: 2.3em;
  line-height: 0;
  vertical-align: -0.3em;
}
blockquote, cite {
  word-break: break-word;
}
/* DL, FAQ ----------------------------------------------- */
dt {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #23282B;
  margin-top: 16px;
  font-size: 1.08rem;
}
dd {
  margin-left: 0px;
  margin-bottom: 10px;
  color: #444a53;
  font-size: 1rem;
  padding-left: 10px;
}
.quick-links {
  margin-top: 20px;
}
.quick-links h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #C49F65;
}
.quick-links ul {
  padding-left: 14px;
}
.quick-links a {
  color: #23282B;
  text-decoration: underline;
  transition: color 0.13s;
}
.quick-links a:hover, .quick-links a:focus {
  color: #C49F65;
}
/* TABLES ---------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 14px 16px;
}
thead {
  background: #23282B;
  color: #fff;
}
th {
  text-align: left;
  font-size: 1.08rem;
}
tbody tr:nth-child(even) {
  background: #f8f6f3;
}
/* GENERAL ELEMENT UTILITIES ----------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
}
ul > li img, .text-section ul > li img {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
}
li {
  color: #383E45;
  line-height: 1.7;
}
hr {
  border: none;
  border-top: 1.5px solid #e4e0dc;
  margin: 34px 0;
}
/* ICON GOLD ACCENTS ------------------------------------------ */
img[alt*="icon"] {
  filter: brightness(1.1) sepia(0.18) hue-rotate(-13deg) saturate(1.2);
}
/* UTILITY: Hide visually */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}
/* COOKIE CONSENT BANNER --------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23282B;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 -4px 36px #0002;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 18px 22px 18px;
  min-height: 90px;
  flex-wrap: wrap;
  gap: 20px;
  transition: transform 0.33s, opacity 0.33s;
}
.cookie-banner .cookie-message {
  max-width: 520px;
  margin-right: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .button-primary, .cookie-banner .button-secondary {
  font-size: 1rem;
  padding: 10px 18px;
  min-width: 120px;
}
.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,40,43,0.47);
  z-index: 10100;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-settings-modal.open {
  display: flex;
}
.cookie-settings-content {
  background: #fff;
  color: #23282B;
  border-radius: 22px;
  min-width: 350px;
  max-width: 94vw;
  padding: 34px 30px 28px 30px;
  box-shadow: 0 8px 44px #0003;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-settings-content h2 {
  font-size: 1.3rem;
  margin-bottom: 13px;
}
.cookie-settings-content .close-settings {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #C49F65;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 3px 10px;
  border-radius: 7px;
  transition: background 0.12s;
}
.cookie-settings-content .close-settings:hover, .cookie-settings-content .close-settings:focus {
  background: #efe7db;
}
.cookie-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-weight: 600;
  color: #23282B;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #C49F65;
  width: 20px;
  height: 20px;
}
.cookie-category .always-on {
  color: #C49F65;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-actions .button-secondary {
  border-width: 2px;
}
/* RESPONSIVE BREAKPOINTS ------------------------------------- */
@media (max-width: 1024px) {
  .nav-footer, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 27px;
    align-items: stretch;
  }
  .main-nav { display: none; }
  .button-primary, .button-secondary {
    font-size: 1rem;
    padding: 13px 27px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .content-wrapper {
    max-width: 100%;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 26px 4px 32px 4px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .content-grid, .feature-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 15px 8px;
    gap: 12px;
  }
  .nav-header {
    min-height: 64px;
    gap: 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
}
@media (max-width: 530px) {
  h1 {
    font-size: 1.28rem;
    margin-bottom: 12px;
  }
  h2, h3 {
    font-size: 1.04rem;
  }
  .nav-header {
    padding: 0 2px;
  }
  .container {
    padding: 0 2px;
  }
}
/* ACCESSIBILITY --------------------------------------------- */
.button-primary:focus, .button-secondary:focus, .main-nav a:focus, .mobile-nav a:focus, .mobile-menu-close:focus {
  outline: 2px solid #C49F65;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #f5f6f7a6;
}
/* MICRO-INTERACTIONS: HOVER/ANIMATION ---------------------- */
.button-primary, .button-secondary {
  transition: background 0.18s, color 0.13s, box-shadow 0.19s;
}
.feature {
  transition: border 0.16s, box-shadow 0.21s;
}
.card {
  transition: box-shadow 0.26s;
}
.mobile-menu,
.cookie-settings-modal {
  transition: transform 0.36s, opacity 0.22s;
}
.cookie-banner {
  transition: transform 0.24s, opacity 0.21s;
}
/* LUXURY THEMING ACCENTS & DETAILS -------------------------- */
::selection {
  background: #C49F6522;
  color: #23282B;
}
::-webkit-scrollbar {
  width: 10px;
  background: #fcfcfa;
}
::-webkit-scrollbar-thumb {
  background: #C49F6599;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C49F65cc;
}
/* IMPORT FONTS --------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');
