/* === CSS RESET & BASELINE === */
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;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F5F5F5;
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* === FONT IMPORT (Include in your project HTML HEAD) === */
@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');

/* === BRAND COLORS === */
:root {
  --color-primary: #23272A;
  --color-secondary: #B6A371;
  --color-accent: #F5F5F5;
  --color-white: #fff;
  --color-black: #181818;
  --color-grey: #ECE9E2;
  --color-error: #D8000C;
  --shadow-card: 0 6px 24px rgba(35,39,42,0.09);
  --transition-default: 0.22s cubic-bezier(.4,0,.2,1);
  --radius: 16px;
  --header-height: 74px;
}


/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.25rem; margin-bottom: 10px; }
h5 { font-size: 1.08rem; }
h6 { font-size: 0.95rem; }
p, ul li, ol li {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.8;
  margin-bottom: 8px;
}
strong { font-weight: 700; }
em { font-style: italic; }

/* Luxury Accent Text */
.accent, .luxury {
  color: var(--color-secondary);
}


/* === CONTAINERS & SPACING === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
}

/* === FLEXBOX LAYOUTS (MANDATORY) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  padding: 24px 24px 20px 24px;
  transition: box-shadow var(--transition-default), transform var(--transition-default);
}
.card:hover {
  box-shadow: 0 12px 24px rgba(35,39,42,0.18);
  transform: translateY(-6px) scale(1.017);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: var(--color-grey);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(35,39,42,0.07);
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow var(--transition-default), border-color var(--transition-default);
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(35,39,42,0.10);
  border-color: #e0c16f;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Tables for price list */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 20px 0;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 1rem;
}
thead, th {
  background: #EEE9DE;
  color: var(--color-primary);
  font-weight: 600;
}
th, td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid #ece9e2;
}
tr:last-child td {
  border-bottom: none;
}


/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 18px 0 rgba(35,39,42,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  position: relative;
}
header img {
  height: 54px;
  margin-right: 26px;
  display: block;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 8px;
  position: relative;
  transition: color var(--transition-default), background var(--transition-default);
}
nav a:hover, nav a:focus {
  background: var(--color-grey);
  color: var(--color-secondary);
}
nav a.cta {
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(182,163,113,0.07);
  margin-left: 6px;
  border: none;
  transition: background var(--transition-default), color var(--transition-default), box-shadow var(--transition-default);
}
nav a.cta:hover, nav a.cta:focus {
  background: #9a8843;
  color: var(--color-white);
  box-shadow: 0 6px 32px rgba(182,163,113,0.11);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 9px 14px 10px 14px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(182,163,113,0.14);
  transition: background var(--transition-default), color var(--transition-default);
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #9a8843;
  color: var(--color-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,39,42,0.98);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.7,.3,.4,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  color: var(--color-secondary);
  font-size: 2.1rem;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 20px 22px 0 0;
  cursor: pointer;
  transition: color var(--transition-default);
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffffff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 36px 30px 44px;
  gap: 18px;
  margin-top: 50px;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-size: 1.35rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  margin-bottom: 7px;
  border-radius: 6px;
  padding: 8px 0 8px 10px;
  transition: background var(--transition-default), color var(--transition-default);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(182,163,113,0.06);
  color: #fff3ba;
}


/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 38px 0 22px 0;
}
footer .container {
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-direction: row;
}
footer nav {
  flex-direction: row;
  gap: 23px;
}
footer nav a {
  color: var(--color-secondary);
  font-size: 1rem;
  font-family: 'Oswald',sans-serif;
  letter-spacing: 0.02em;
  padding: 6px 0;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer p {
  font-size: 1rem;
  color: var(--color-accent);
}

/* === BUTTONS === */
.cta, .btn {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: 'Oswald',sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  margin-top: 12px;
  margin-bottom: 14px;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(182,163,113,0.12);
  cursor: pointer;
  transition: background var(--transition-default), color var(--transition-default), box-shadow var(--transition-default), transform var(--transition-default);
  text-align: center;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: #9a8843;
  color: #fff9e0;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 38px rgba(182,163,113,0.16);
}
.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: none;
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(182,163,113,0.16);
}

/* === ICONS & UL LISTS === */
ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-family: 'Roboto',sans-serif;
  letter-spacing: 0.01em;
}
ul li img {
  height: 22px;
  width: 22px;
  display: inline-block;
  margin-right: 2px;
}

/* === TEXT-SECTION === */
.text-section {
  margin-bottom: 24px;
  padding-bottom: 0;
  font-size: 1.04rem;
}
.text-section ul {
  margin-bottom: 20px;
  padding-left: 0;
}

/* === LINKS & MICRO-INTERACTIONS === */
a {
  transition: color var(--transition-default);
}
a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
a[href^="mailto"] {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 500;
}
a[href^="mailto"]:hover, a[href^="mailto"]:focus {
  color: #8b7f53;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.section, .card, .testimonial-card {
  animation: fadeInUp 0.76s cubic-bezier(.4,0,.2,1);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #23272A;
  color: #fff;
  padding: 26px 16px 26px 26px;
  z-index: 3000;
  box-shadow: 0 -2px 32px rgba(36,38,39,0.20);
  animation: fadeInUp 0.7s cubic-bezier(.32,0,.2,1);
  font-size: 1.05rem;
}
.cookie-banner__text {
  flex: 1;
  margin-right: 22px;
  font-size: 1rem;
  color: #eee6d2;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .btn-accept {
  background: var(--color-secondary);
  color: #23272A;
}
.cookie-banner .btn-accept:hover {
  background: #d8be70;
}
.cookie-banner .btn-reject {
  background: transparent;
  color: #fff;
  border: 2px solid var(--color-secondary);
}
.cookie-banner .btn-reject:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .btn-settings {
  background: #393c3f;
  color: #fff;
  border: 1px solid #d1c195;
}
.cookie-banner .btn-settings:hover {
  background: #1c1e21;
  color: var(--color-secondary);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(120vh);
  width: 96vw;
  max-width: 410px;
  background: #fff;
  color: #1c1e21;
  box-shadow: 0 12px 32px 0 rgba(35,39,42,0.14);
  border-radius: 16px 16px 0 0;
  z-index: 3100;
  padding: 28px 30px 20px 30px;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.7,.3,.4,1), opacity 0.2s;
}
.cookie-modal.open {
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  opacity: 1;
}
.cookie-modal h3 {
  margin-bottom: 18px;
  font-size: 1.28rem;
  font-family: 'Oswald',sans-serif;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-secondary);
}
.cookie-modal .category-desc {
  font-size: 0.97rem;
  color: #766846;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 22px;
}
.cookie-modal .btn {
  min-width: 100px;
  padding: 10px 17px;
}
.cookie-modal .btn-cancel {
  background: #eae6de;
  color: #846f35;
  border: none;
}
.cookie-modal .btn-cancel:hover {
  background: #e8dbaf;
  color: #6F5C2B;
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 1150px) {
  .container {
    max-width: 1002px;
  }
}
@media (max-width: 900px) {
  .container, footer .container {
    max-width: 92vw;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  footer nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.22rem; }
  header .container {
    flex-direction: row;
    gap: 10px;
    align-items: center;
    min-height: 60px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .section {
    padding: 30px 6vw;
    margin-bottom: 44px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-item, .card {
    padding: 17px 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer .container{
    flex-direction: column;
    gap:12px;
  }
  footer nav{
    flex-direction: column;
    gap:5px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.36rem; }
  .section {
    padding: 21px 2vw;
    margin-bottom: 30px;
  }
  .card, .testimonial-card {
    padding: 12px 7px;
  }
  .cookie-modal {
    padding: 12px 7px 11px 10px;
  }
}

/* === UTILITY CLASSES & SPACING === */
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-20 { margin-bottom: 20px !important; }
.centered { text-align: center; justify-content: center; align-items: center; }
.flex-row { display: flex; flex-direction: row; gap: 16px; }
.flex-col { display: flex; flex-direction: column; gap: 16px; }

/* === FOCUS STATES === */
input:focus, button:focus, .btn:focus, .cta:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1.5px;
}

/* === MISCELLANEOUS === */
::-webkit-scrollbar {
  width: 10px;
  background: #EDE7D7;
}
::-webkit-scrollbar-thumb {
  background: #B6A371;
  border-radius: 7px;
}

/* === END CSS === */
