/* RESET & BASE STYLES */
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 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232629;
  background: #F9F6F2;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #232629;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #B6A07C;
}
ul {
  list-style: none;
}
strong {
  font-weight: 700;
}

/* ACCESSIBLE FOCUS */
:focus {
  outline: 2px dashed #B6A07C;
}

/* GEOMETRIC STRUCTURE: SPACING & CONTAINER PATTERNS */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1.5px solid #E6DED5;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(35,38,41,0.07);
  margin-bottom: 20px;
  padding: 32px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(182,160,124,0.18);
  border-color: #B6A07C;
}
.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: 20px;
  padding: 20px 28px;
  background: #fff;
  border: 2.5px solid #B6A07C;
  border-radius: 24px;
  margin-bottom: 24px;
  box-shadow: 0 3px 14px 0 rgba(35,38,41,0.06);
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #232629;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
p {
  font-size: 1rem;
  margin-bottom: 8px;
}
address {
  font-style: normal;
  font-size: 1rem;
  margin-top: 18px;
  color: #444;
  line-height: 1.7;
}

/* PRIMARY BUTTON: CTA */
.cta-button {
  background: #232629;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 36px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(35,38,41,0.07);
  margin-top: 8px;
  margin-bottom: 8px;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: #B6A07C;
  color: #232629;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 18px 0 rgba(182,160,124,0.14);
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2.5px solid #B6A07C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 99;
}
header img {
  height: 36px;
  width: auto;
  margin-right: 32px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232629;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
header nav a.cta-button {
  margin-left: 24px;
  font-size: 1rem;
}
header nav a:hover, header nav a:focus {
  background: #F9F6F2;
  color: #B6A07C;
}
.mobile-menu-toggle {
  display: none;
  background: #232629;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.19s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #B6A07C;
  color: #232629;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F6F2;
  box-shadow: 0 6px 24px 0 rgba(35,38,41,0.18);
  transform: translateX(-100vw);
  z-index: 1001;
  transition: transform 0.3s cubic-bezier(.57,.3,.69,1.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 28px 28px 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #232629;
  cursor: pointer;
  z-index: 1003;
  border-radius: 50%;
  padding: 5px 13px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B6A07C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.23rem;
  color: #232629;
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-radius: 7px;
  text-transform: uppercase;
  transition: background 0.17s, color 0.17s;
  min-width: 180px;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B6A07C;
  color: #fff;
}

/* MAIN & SECTION LAYOUTS */
main {
  width: 100%;
  margin: 0 auto 54px auto;
  flex: 1 0 auto;
}
section {
  width: 100%;
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 0;
}

/* HERO BLOCK SPECIALS */
section:first-of-type {
  margin-top: 16px;
}
h1 + p {
  font-size: 1.22rem;
  color: #333;
  margin-bottom: 16px;
  max-width: 660px;
}

/* Icon/Feature  lists */
ul > li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 1.06rem;
}
ul > li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #F9F6F2;
  border: 2px solid #E6DED5;
  padding: 4px;
  margin-right: 2px;
}

/* Table Styles */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0 32px 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(35,38,41,0.08);
  overflow: hidden;
}
thead tr {
  background: #B6A07C;
  color: #fff;
}
th, td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid #e6ded5;
}
th {
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-right: 1px solid #F9F6F2;
}
tbody tr:nth-child(odd) {
  background: #F9F6F2;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* TESTIMONIALS */
.testimonial-card p {
  font-size: 1.11rem;
  color: #232629;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 6px;
}
.testimonial-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #B6A07C;
  margin-top: 6px;
  text-transform: uppercase;
}

/* FOOTER */
footer {
  width: 100%;
  background: #232629;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 0 24px 0;
  gap: 24px;
  border-top: 2.5px solid #B6A07C;
}
footer img {
  width: 58px;
  height: auto;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: #B6A07C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  text-transform: uppercase;
  padding: 6px 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  transition: color 0.12s, background 0.12s;
}
footer nav a:hover, footer nav a:focus {
  background: #B6A07C;
  color: #232629;
}
footer address {
  color: #B6A07C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-top: 8px;
  text-align: center;
}
footer address a {
  color: #fff;
  border-bottom: 1.5px dotted #B6A07C;
  transition: color 0.14s, border 0.16s;
}
footer address a:hover, footer address a:focus {
  color: #B6A07C;
  border-bottom: 1.5px solid #B6A07C;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #232629;
  color: #fff;
  box-shadow: 0 -4px 24px 0 rgba(35,38,41,0.20);
  padding: 24px 16px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.98rem;
  transition: transform 0.4s cubic-bezier(0.42,0,0.68,1.23);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  padding: 10px 21px;
  border-radius: 7px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0 0 0 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.cookie-accept {
  background: #B6A07C;
  color: #232629;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #232629;
  color: #B6A07C;
  box-shadow: 0 2px 12px 0 rgba(182,160,124,0.12);
}
.cookie-reject {
  background: #fff;
  color: #232629;
  border: 2px solid #B6A07C;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #B6A07C;
  color: #fff;
}
.cookie-settings {
  background: #232629;
  color: #B6A07C;
  border: 2px solid #B6A07C;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #B6A07C;
  color: #232629;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(35,38,41,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.42,0,0.68,1.23);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 36px 0 rgba(35,38,41,0.16);
  max-width: 420px;
  width: 92vw;
  padding: 36px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.31rem;
  font-family: 'Playfair Display', serif;
  color: #232629;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #B6A07C;
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-consent-row {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #B6A07C;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F9F6F2;
}

/* FORMS (Inputs, etc. if needed later) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #B6A07C;
  border-radius: 9px;
  padding: 11px 14px;
  margin-bottom: 18px;
  outline: none;
  background: #fff;
  transition: border 0.14s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #232629;
}

/* GENERAL ANIMATIONS */
button, .cta-button, .mobile-menu-toggle {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.17s;
}
section, .card, .testimonial-card, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.2s, border-color 0.16s, background 0.18s, transform 0.38s cubic-bezier(0.54,0,0.44,1.36);
}

/* TEXT SECTIONS WITHIN COLUMNS */
.text-section {
  background: #F9F6F2;
  border-left: 4px solid #B6A07C;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-bottom: 20px;
  font-size: 1.01rem;
  color: #232629;
  box-shadow: 0 2px 7px 0 rgba(35,38,41,0.03);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
  header nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  footer nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header {
    flex-direction: row;
    align-items: center;
    padding: 12px 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 18px;
    padding: 0 0;
  }
  .text-image-section, .content-grid, .card-container, .footer-nav {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 12px;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
  table th, table td {
    padding: 10px 7px;
    font-size: 0.97rem;
  }
}

@media (max-width: 515px) {
  html {
    font-size: 14px;
  }
  .cookie-modal {
    padding: 17px 6vw 18px 6vw;
  }
  .section {
    padding: 14px 0;
  }
}

/* Z-INDEX QUIRKS, ONLY WHEN NEEDED */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 3010;
}

/* ENSURE NO CONTENT OVERLAP */
.section, .content-wrapper, .card-container, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* GEOMETRIC ACCENTS (example angular border for effect) */
.card, .testimonial-card {
  border-radius: 0 24px 0 24px;
}
.cta-button, .cookie-banner button, .mobile-menu-toggle {
  border-radius: 8px 0 8px 0;
}

/* Hide scroll for modal when open */
body.cookie-modal-open {
  overflow: hidden;
}
