/* =====================================================
   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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  background: #F5F5F5;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #6D4C41;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover,
a:focus {
  color: #bfa04a;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
}
strong {
  font-weight: 700;
  color: #263238;
}

/* =====================================================================
   TYPOGRAPHY — Luxury Premium Brand
===================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing:0.01em;
  color: #263238;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #495057;
}

/* SHADOWS, COLORS & BRAND ACCENTS */
:root {
  --colum-primary: #263238;
  --colum-secondary: #6D4C41;
  --colum-accent: #F5F5F5;
  --colum-gold: #bfa04a;
  --colum-gold-light: #fbeec1;
  --colum-grey: #e5e1dc;
  --colum-white: #ffffff;
  --colum-black: #181818;
  --brand-border-radius: 12px;
  --brand-shadow-card: 0 2px 16px rgba(41, 41, 55, 0.07);
  --brand-shadow-hover: 0 4px 24px rgba(191,160,74,.13);
}

/* =====================================================================
   LAYOUT
===================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--colum-white);
  border-radius: var(--brand-border-radius);
  box-shadow: var(--brand-shadow-card);
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--colum-white);
  border-radius: var(--brand-border-radius);
  box-shadow: var(--brand-shadow-card);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  padding: 24px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 240px;
  border: 1px solid var(--colum-grey);
}
.card:hover {
  box-shadow: var(--brand-shadow-hover);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--colum-gold);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--colum-white);
  border-radius: var(--brand-border-radius);
  box-shadow: var(--brand-shadow-card);
  padding: 20px 24px;
  min-width: 200px;
  margin-bottom: 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--colum-grey);
  border-left: 4px solid var(--colum-gold);
  border-radius: var(--brand-border-radius);
  margin-bottom: 24px;
  color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(41,41,55,.06);
}
.testimonial-card p {
  color: #1a1a1a;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--colum-secondary);
}

.map-placeholder {
  background: var(--colum-grey);
  border: 1px dashed #bfa04a;
  border-radius: var(--brand-border-radius);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a99873;
  font-size: 1.1rem;
  margin: 24px 0;
}

/* =====================================================================
   HEADER & NAVIGATION
===================================================================== */
header {
  background: var(--colum-white);
  box-shadow: 0 2px 16px rgba(41,41,41,.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1090;
}
header .container {
  flex-direction: row;
  align-items: center;
  height: 70px;
  min-height: 70px;
  padding-top:0; padding-bottom:0;
}
header img {
  height: 40px; width: auto;
  margin-right: 30px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
nav a {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--colum-primary);
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a:focus {
  background: var(--colum-gold-light);
  color: var(--colum-gold);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--colum-secondary);
  margin-left: 24px;
  cursor: pointer;
  z-index: 1301;
  transition: color 0.17s;
  border-radius: 8px;
  padding: 7px 14px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--colum-gold);
  background: rgba(211, 180, 70, 0.09);
}

/* MOBILE MENU SLIDE IN */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--colum-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1600;
  box-shadow: 0 8px 40px rgba(41,41,41,.22);
  padding: 0 32px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,1.2,.64,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--colum-secondary);
  background: none;
  border: none;
  margin: 34px 0 26px 0;
  padding: 10px 18px;
  align-self: flex-end;
  border-radius: 8px;
  transition: background 0.17s, color 0.12s;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--colum-gold);
  background: rgba(211, 180, 70, 0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Oswald','Roboto',sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--colum-primary);
  padding: 12px 0 12px 10px;
  border-radius: 4px;
  width: 100%;
  transition: color 0.15s, background 0.13s;
  display: block;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--colum-gold);
  background: var(--colum-gold-light);
}

/* Hide desktop nav on mobile, burger appears */
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================================================================
   BUTTONS & CTA
===================================================================== */
.cta {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--colum-primary);
  background: var(--colum-gold-light);
  border: 1.5px solid var(--colum-gold);
  padding: 14px 38px;
  border-radius: 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 13px rgba(233,194,95,.07);
  display: inline-block;
  margin-top: 10px;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.cta.primary {
  background: var(--colum-gold);
  color: var(--colum-white);
  border: 2px solid var(--colum-gold);
  box-shadow: 0 5px 36px rgba(233,194,95,.13);
}
.cta:hover, .cta:focus {
  background: var(--colum-gold);
  color: var(--colum-white);
  border-color: var(--colum-gold);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 40px rgba(189,167,72,0.16);
}

/* =====================================================================
   FOOTER
===================================================================== */
footer {
  background: var(--colum-primary);
  color: var(--colum-gold);
  padding: 38px 0 24px 0;
  border-top: 5px solid var(--colum-gold);
  box-shadow: 0 -2px 14px rgba(41,41,55,.09);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-main-links,
.footer-legal-links {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-main-links a, .footer-legal-links a {
  color: var(--colum-gold);
  font-family: 'Oswald', 'Roboto',sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 6px 6px 6px 0;
  letter-spacing: 0.005em;
  transition: color 0.14s, border-bottom 0.18s;
}
.footer-main-links a:hover, .footer-legal-links a:hover {
  color: #fbeec1;
  border-bottom: 1.5px solid #fbeec1;
}
.footer-social {
  color: var(--colum-gold);
  font-size: 0.95rem;
  text-align: center;
  opacity: 0.82;
  margin-top: 7px;
}

/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
===================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 19999;
  background: var(--colum-primary);
  color: var(--colum-gold);
  box-shadow: 0 -2px 22px rgba(41,41,55,.14);
  padding: 18px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
  border-top: 3px solid var(--colum-gold);
  animation: banner-in 0.5s cubic-bezier(.45,1.7,.36,1) 1;
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner strong {
  color: var(--colum-gold);
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Oswald','Roboto',sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--colum-gold);
  color: var(--colum-white);
  border: none;
  border-radius: 24px;
  padding: 10px 30px;
  margin: 0 7px;
  cursor: pointer;
  transition: background 0.23s, color 0.16s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(191,160,74,0.08);
}
.cookie-btn.reject {
  background: var(--colum-secondary);
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #a48338;
  color: var(--colum-white);
}
.cookie-settings-btn {
  background: none;
  color: var(--colum-gold);
  border: 1.25px solid var(--colum-gold);
  margin-left: 10px;
  transition: background 0.18s, border-color 0.13s, color 0.12s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--colum-gold-light);
  color: var(--colum-primary);
  border-color: #c7a343;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20001;
  background: rgba(26,21,15,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fade-in 0.28s cubic-bezier(.45,1.7,.36,1) 1;
}
@keyframes fade-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal {
  background: var(--colum-white);
  border-radius: var(--brand-border-radius);
  max-width: 390px;
  width: 88vw;
  padding: 38px 32px 24px 32px;
  box-shadow: 0 4px 36px rgba(41,41,55,.22);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.03rem;
  color: var(--colum-primary);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--colum-gold);
  margin-bottom: 8px;
  font-family: 'Oswald','Roboto',sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--colum-gold);
  width: 18px; height: 18px;
  margin: 0;
}
.cookie-category label, .cookie-category span {
  color: var(--colum-primary);
  font-size: 1.01rem;
}
.cookie-category .essential {
  color: #888;
  font-style: italic;
  margin-left: 12px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-close {
  background: none;
  color: var(--colum-secondary);
  border: none;
  font-size: 1.4rem;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s, background 0.13s;
  border-radius: 7px;
  padding: 6px 12px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--colum-gold);
  background: rgba(211, 180, 70, 0.12);
}

/* =====================================================================
   FORM ELEMENTS
===================================================================== */
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto',sans-serif;
  font-size: 1rem;
  padding: 13px 18px;
  border: 1.5px solid var(--colum-grey);
  border-radius: 8px;
  background: var(--colum-accent);
  color: var(--colum-primary);
  box-shadow: none;
  margin-bottom: 20px;
  width: 100%;
  transition: border 0.15s, box-shadow 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--colum-gold);
  outline: none;
  box-shadow: 0 1px 5px rgba(191,160,74,0.08);
}
::placeholder {
  color: #aaa;
  opacity: 1;
}

button, input[type="submit"] {
  font-family: 'Oswald','Roboto',sans-serif;
  font-size: 1rem;
  background: var(--colum-gold);
  color: var(--colum-white);
  border: none;
  border-radius: 28px;
  padding: 12px 34px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  box-shadow: 0 2px 10px rgba(191,160,74,.10);
}
button:hover, input[type="submit"]:hover, button:focus, input[type="submit"]:focus {
  background: #a48338;
  color: var(--colum-white);
  outline: none;
}

/* =====================================================================
   RESPONSIVE DESIGN
===================================================================== */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    max-width: 100vw;
    padding: 0 3px;
    gap: 14px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-main-links,
  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.36rem;
    margin-bottom: 14px;
  }
  .card, .feature-item {
    min-width: 98%;
    max-width: 100%;
    padding: 17px;
  }
  .testimonial-card {
    padding: 13px;
    font-size: .97rem;
  }
}

@media (max-width:560px) {
  h1, h2, h3 {
    word-break: break-word;
  }
  .section {
    padding: 13px 0;
  }
  .cookie-modal {
    padding: 18px 7vw 18px 7vw;
    min-width: unset;
  }
  .testimonial-card {
    font-size: .95rem;
  }
}

/* Utility: Gold highlight for special details */
.highlight-gold {
  color: var(--colum-gold);
  font-weight: 700;
}

/* =====================================================================
   VISUAL REFINEMENTS & DETAILS
===================================================================== */
hr {
  border: none;
  border-top: 1.5px solid var(--colum-gold);
  margin: 38px 0 20px 0;
}
::-webkit-scrollbar {
  width: 8px; background: #fbeec1;
}
::-webkit-scrollbar-thumb { background: var(--colum-gold); border-radius: 6px; }

/* Decorative lines and details */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  height: 3px;
  width: 56px;
  background: var(--colum-gold);
  border-radius: 2px;
  margin-top: 6px;
}

/* Card-number badge example (for future use) */
.card-badge {
  position: absolute;
  top: 19px;
  right: 19px;
  background: var(--colum-gold);
  color: var(--colum-white);
  border-radius: 50%;
  font-size: 0.99rem;
  font-family: 'Oswald',sans-serif;
  padding: 0.4em 0.6em;
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(191,160,74,0.08);
}

/* =====================================================================
   SPACING & WHITE SPACE ENFORCEMENT
===================================================================== */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container { gap: 24px !important; }
.card { margin-bottom: 20px !important; }
.content-grid {
  gap: 20px !important;
}
.text-image-section {
  gap: 30px !important;
}
.testimonial-card {
  gap: 20px !important;
  padding: 20px !important;
}
.feature-item {
  gap: 15px !important;
}

/* Make sure no content overlaps */
.card, .feature-item, .testimonial-card, .section, .content-wrapper {
  margin-bottom: 20px !important;
}

/* =====================================================================
   LUXURY MICRO-INTERACTIONS
===================================================================== */
.card, .feature-item, .testimonial-card {
  transition: box-shadow .22s, border-color .18s, transform 0.20s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  transform: scale(.985);
  box-shadow: 0 1px 7px rgba(191,160,74,0.09);
  border-color: var(--colum-secondary);
}
ul li:before {
  content: '\2022';
  color: var(--colum-gold); /* gold dot */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
ol li { margin-bottom: 10px; }

/* For headings in lists, etc. */
ul li strong { color: var(--colum-gold); }

/* =====================================================================
   ACCESSIBILITY
===================================================================== */
:focus-visible {
  outline: 2.5px solid var(--colum-gold);
  outline-offset: 3px;
}

/* Hide visually */
.visually-hidden {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* =====================================================================
   PRINT STYLES (BONUS)
===================================================================== */
@media print {
  body, .section, .container, .content-wrapper {
    background: #fff !important;
    color: #263238 !important;
    box-shadow: none !important;
  }
  nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, footer {
    display: none !important;
  }
}

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