/*
RESET & BASE TYPOGRAPHY
-----------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #FDF6E3;
  color: #2C3E50;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B48938;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E67E22;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.25em;
}
strong {
  color: #735D30;
  font-weight: 700;
}
hr {
  border: 0;
  border-top: 1px solid #e0dac0;
  margin: 2rem 0;
}

/*
LUXURY PREMIUM BRAND STYLES
---------------------------*/
:root {
  --brand-primary: #2C3E50;
  --brand-secondary: #E67E22;
  --brand-gold: #B48938;
  --brand-accent: #FDF6E3;
  --brand-surface: #fff;
  --brand-dark: #181C1F;
  --brand-shadow: rgba(44,62,80,0.08);
  --radius-card: 18px;
  --radius-btn: 30px;
  --heading-font: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
  --transition: 0.24s cubic-bezier(.42,0,.58,1);
  --gold-gradient: linear-gradient(90deg, #e8c165 0%, #b48938 100%);
}

/*
CONTAINER & SECTIONS
--------------------*/
.container {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-card);
}
@media (max-width: 600px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 6px;
  }
}

/*
HEADER & NAVIGATION
-------------------*/
header {
  background: var(--brand-surface);
  border-bottom: 2px solid #f6e6bc;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  padding-bottom: 22px;
}
header img {
  max-height: 54px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--brand-primary);
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-gold);
}

/* Gold underline for current page link (optional, style hint)
nav a.active {
  color: var(--brand-gold);
  box-shadow: 0 2px 0 0 var(--brand-gold) inset;
}
*/

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-gold);
  margin-left: 18px;
  cursor: pointer;
  display: none;
  transition: color 0.18s;
  z-index: 30;
  padding: 8px 15px;
  border-radius: 50%;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--brand-secondary);
  background: #f9f5ea;
  outline: none;
}
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*
MOBILE MENU
-----------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(44,62,80,0.87);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 32px 25px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  border-radius: 50%;
  transition: background 0.17s, color 0.18s;
  padding: 6px 14px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E67E22;
  color: #fff9e7;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: flex-start;
  gap: 22px;
  margin-top: 24px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-weight: 600;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  padding: 11px 0 11px 0;
  margin-right: 24px;
  transition: color 0.18s, background 0.19s;
  border-radius: 8px;
  display: block;
  width: 88vw;
  max-width: 410px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #f8d07f;
  background: rgba(255,255,255,0.13);
}
@media (max-width: 1024px) {
  .mobile-menu {
    display: flex;
  }
}

/* MAIN LAYOUT STRUCTURE */
main {
  background: none;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/*
TYPOGRAPHY & HEADINGS
---------------------*/
h1, h2, h3, h4, h5 {
  font-family: var(--heading-font);
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: var(--brand-dark);
}
h2 {
  font-size: 1.55rem;
  margin-top: 18px;
  color: var(--brand-gold);
}
h3 {
  font-size: 1.18rem;
  color: var(--brand-secondary);
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.08rem; }
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #2C3E50;
}

/* FORCE BUTTON, .cta-btn & LINK BUTTONS */
.cta-btn, button, input[type="submit"], .mobile-menu-toggle {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: .04em;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #fff;
  padding: 0.95em 2.17em;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 14px 0 rgba(180,137,56,0.08);
  text-transform: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.18s, box-shadow 0.24s, color 0.17s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #B48938 0%, #E67E22 100%);
  color: #fff9e7;
  box-shadow: 0 2px 28px 0 rgba(180,137,56,0.14);
}

button, input[type="submit"] {
  border: none;
  background: var(--brand-gold);
  color: #fff;
  padding: 0.7em 1.8em;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
  box-shadow: 0 2px 6px 0 var(--brand-shadow);
}
button:hover, input[type="submit"]:hover,
button:focus, input[type="submit"]:focus{
  background: var(--brand-secondary);
  color: #fff7e5;
}

/*
CARD & FLEX WRAPPERS
--------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-surface);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 22px 0 var(--brand-shadow);
  margin-bottom: 20px;
  padding: 26px 24px;
  position: relative;
  flex: 1 1 250px;
  min-width: 220px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(180,137,56,0.16);
  transform: translateY(-3px) scale(1.018);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}

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

/*
TESTIMONIAL CARDS
-----------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 3px 16px 0 var(--brand-shadow);
  padding: 20px;
  margin-bottom: 20px;
  border: 1.5px solid #f6e6bc;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(180,137,56,0.16);
  border-color: #E67E22;
}
.testimonial-card p {
  color: #222;
  font-size: 1.07rem;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-size: 1.02rem;
  font-family: var(--heading-font);
  letter-spacing: 0.004em;
  font-weight: 600;
}

/* Ensure testimonial text is readable on all backgrounds */
@media (max-width: 600px){
  .testimonial-card {
    padding: 13px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/*
LISTS & DETAILS
---------------*/
ul, ol {
  margin-bottom: 14px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}
.section ul li strong {
  color: var(--brand-gold);
  font-weight: 700;
}

/*
FORMS (Contact etc.)
-------------------*/
form {
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 430px;
  margin-top: 20px;
  margin-bottom: 20px;
}
label {
  font-family: var(--body-font);
  color: #735D30;
  font-size: 1rem;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.2px solid #e6cf98;
  border-radius: 9px;
  padding: 0.7em 1em;
  color: #222;
  background: #FBF7EE;
  margin-top: 4px;
  transition: border-color 0.17s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-gold);
  outline: none;
  box-shadow: 0 0 0 2px #E67E2214;
}

/*
FOOTER
------*/
footer {
  background: var(--brand-surface);
  border-top: 2px solid #f6e6bc;
  font-size: 1rem;
  padding: 35px 0 24px 0;
  color: var(--brand-primary);
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
footer nav a {
  font-size: 1rem;
  color: #735D30;
  letter-spacing: 0.01em;
  padding: 3px 11px;
  border-radius: 5px;
  transition: color 0.15s, background 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-gold);
}
footer p {
  color: #8e7851;
  font-size: 0.98rem;
}

@media (max-width: 600px) {
  footer .container {
    padding-bottom: 16px;
  }
  footer nav {
    gap: 12px;
    flex-direction: column;
  }
}

/*
COOKIE CONSENT BANNER
---------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe8;
  color: #2C3E50;
  z-index: 1200;
  box-shadow: 0 -3px 28px 0 rgba(44,62,80,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 21px 14px;
  font-size: 1.07rem;
  transition: transform 0.31s var(--transition), opacity 0.33s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 580px;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-banner button {
  font-family: var(--heading-font);
  font-size: 1.01rem;
  border-radius: var(--radius-btn);
  border: none;
  padding: 8px 23px;
  margin: 0 2px;
  min-width: 110px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-accept {
  background: var(--gold-gradient);
  color: #fff;
  font-weight: 600;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: linear-gradient(90deg,#B48938 0%,#E67E22 100%);
}
.cookie-reject {
  background: #f7e8cd;
  color: #997733;
  font-weight: 500;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f5dab8;
  color: #B48938;
}
.cookie-settings {
  background: #f5f1e1;
  color: #2C3E50;
  font-weight: 500;
  border: 1px solid #e8c165;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #f6e6c8;
  color: #735D30;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    padding: 16px 8px;
  }
}

/* MODAL POPUP FOR COOKIE SETTINGS */
.cookie-modal {
  position: fixed;
  left: 0;
  top:0;
  width: 100vw;
  height: 100vh;
  z-index: 1250;
  background: rgba(44,62,80,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fffefb;
  border-radius: var(--radius-card);
  box-shadow: 0 6px 44px 0 rgba(44,62,80,0.22);
  padding: 36px 32px;
  max-width: 420px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: modalPopIn 0.37s var(--transition);
}
@keyframes modalPopIn {
  0% {
    transform: scale(0.97) translateY(40px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #B48938;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 12px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FDF6E3;
  color: #E67E22;
  outline: none;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  font-size: 1.19rem;
  color: #2C3E50;
}
.cookie-category {
  margin-bottom: 13px;
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
  color: #735D30;
  font-size: 1.03rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #B48938;
  width: 17px;
  height: 17px;
}
.cookie-summary {
  font-size: 0.98rem;
  color: #7d6741;
  margin-bottom: 8px;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.cookie-modal-btns button {
  border-radius: var(--radius-btn);
  padding: 8px 20px;
  font-size: 1.02rem;
  font-family: var(--heading-font);
  background: var(--gold-gradient);
  color: #fff;
  border: none;
}
.cookie-modal-btns button:hover, .cookie-modal-btns button:focus {
  background: #E67E22;
  color: #fff6e5;
}
@media (max-width: 480px) {
  .cookie-modal-dialog {
    padding: 21px 7px 18px 11px;
    max-width: 97vw;
  }
}

/*
SPACING UTILITIES & RESPONSIVENESS
---------------------------------*/
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container,
.content-grid,
.text-image-section {
  gap: 20px !important;
}
.card {
  margin-bottom: 20px !important;
}
.testimonial-card {
  margin-bottom: 20px !important;
}
.feature-item {
  gap: 15px !important;
}

/* Responsive Layout Helpers */
@media (max-width: 990px) {
  .container, .content-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    width: 100vw;
    padding: 0 1vw;
    max-width: 100vw;
  }
  .section {
    padding: 22px 0 22px 0 !important;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 500px) {
  .section {
    border-radius: 0;
    padding: 10px 0 !important;
  }
}

/*
MICRO-INTERACTIONS
------------------*/
a, button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, input, textarea {
  transition: color 0.17s, background 0.18s, box-shadow 0.16s, border 0.18s, opacity 0.14s;
}
.card, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.19s, border 0.16s;
  will-change: box-shadow, transform;
}
nav a, .mobile-nav a, footer nav a {
  transition: color 0.12s, background 0.13s;
}

/*
ADDITIONAL BRAND ACCENTS
------------------------*/
.gold-accent {
  color: var(--brand-gold);
}
.gold-bg {
  background: var(--gold-gradient);
  color: #fff;
}
.gold-underline {
  border-bottom: 2px solid var(--brand-gold);
}

/* LUXE SHADOWS */
.luxe-shadow {
  box-shadow: 0 6px 36px 0 rgba(195,155,55,0.14) !important;
}

/*
SCROLLBAR & FOCUS
-----------------
*/
::-webkit-scrollbar {
  width: 10px;
  background: #f5ecda;
}
::-webkit-scrollbar-thumb {
  background: #ccb171;
  border-radius: 8px;
}
*:focus-visible {
  outline: 2px solid #B48938 !important;
  outline-offset: 2px;
  border-radius: 8px;
}

/*
END OF CSS
----------*/
