/* RESET & BASELINE --------------------------- */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #374151;
  background: linear-gradient(135deg, #F5F3EF 0%, #e7e3de 100%);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #C3A179;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 6px;
}
blockquote {
  border-left: 4px solid #C3A179;
  padding-left: 18px;
  color: #7e6953;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin: 16px 0;
  font-size: 18px;
}

/* TYPOGRAPHY SCALE --------------------------- */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.2;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #C3A179;
  margin-bottom: 6px;
  line-height: 1.2;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #374151;
}

/* CONTAINER & LAYOUT ------------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* HEADER & NAVIGATION ----------------------- */
header {
  width: 100%;
  background: linear-gradient(90deg, #F5F3EF 0%, #e5dbce 100%);
  box-shadow: 0 2px 8px rgba(55,65,81,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 18px;
}
header img {
  height: 40px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s;
}
header nav a:hover, header nav a:focus {
  background: #ebe2d7;
  color: #C3A179;
}
.cta-btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg, #C3A179 10%, #e0c6a2 90%);
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(55,65,81,0.10);
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #C3A179 40%, #9e7b4a 100%);
  color: #fffbe8;
  box-shadow: 0 4px 18px rgba(195,161,121,0.18);
}

/* MOBILE HEADER ----------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: #374151;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
  z-index: 99;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #C3A179;
}

/* MOBILE MENU ------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F5F3EF;
  box-shadow: 0 0 20px rgba(55,65,81,0.15);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,.2,.2,1);
  z-index: 1100;
  padding: 0 0 40px 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  font-size: 2rem;
  background: none;
  color: #374151;
  border: none;
  cursor: pointer;
  z-index: 1110;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #C3A179;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 24px 36px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #374151;
  padding: 12px 8px;
  border-radius: 20px;
  background: none;
  width: 100%;
  transition: background .13s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ebe2d7;
  color: #C3A179;
}

/* HERO SECTIONS ----------------------------- */
.hero {
  background: linear-gradient(120deg, #F5F3EF, #ebe2d7 70%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 20px rgba(55,65,81,0.07);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 56px 0 40px 0;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #2d2d2d;
  font-size: 2.15rem;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.13rem;
  color: #666;
  margin-bottom: 16px;
}

/* FLEXBOX SECTION GAPS ---------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container,
.card-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(55,65,81,.10);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s;
  flex: 1 1 300px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 7px 28px rgba(55,65,81,.13);
}
.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;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(195,161,121,0.11);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow .2s, border .2s;
  border: 1.5px solid #ebe2d7;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: #ab9778;
  font-weight: 500;
  margin-left: auto;
  font-family: 'Roboto', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TEAM MEMBERS ------------------------------ */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(55,65,81,0.08);
  padding: 22px 20px;
  min-width: 220px;
  flex: 1 1 260px;
}
.founders-message blockquote {
  font-size: 1.12rem;
  border-left: 4px solid #C3A179;
  padding-left: 15px;
  margin: 18px 0 0 0;
}

/* USP ICONS --------------------------------- */
.usp-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 10px 0;
}
.usp-icons img {
  width: 36px;
  height: 36px;
  opacity: 0.95;
}

/* CONTACT DETAILS --------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 0 0;
}
.contact-details a {
  color: #374151;
  text-decoration: underline;
  transition: color 0.15s;
}
.contact-details a:hover {
  color: #C3A179;
}

/* FEATURE GRID HANDLING --------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(55,65,81,0.07);
  flex: 1 1 260px;
  min-width: 200px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 0;
  transition: box-shadow 0.20s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 24px rgba(195,161,121,0.09);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

/* FOOTER ------------------------------------ */
footer {
  background: #F5F3EF;
  border-top: 1.5px solid #ebe2d7;
  margin-top: 60px;
  box-shadow: 0 -1px 7px rgba(55,65,81,0.04);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 34px 20px 22px 20px;
  gap: 28px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #7e6953;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color .15s;
}
footer nav a:hover, footer nav a:focus {
  color: #C3A179;
}
footer img {
  height: 38px;
  margin-bottom: 12px;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  color: #9b8b75;
}
footer .contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .contact-info img {
  width: 19px;
  height: 19px;
  margin: 0 4px 0 0;
}
footer .contact-info a {
  color: #374151;
  text-decoration: underline;
  font-weight: 500;
  transition: color .15s;
}
footer .contact-info a:hover {
  color: #C3A179;
}

/* BUTTONS, FORMS, INTERACTIONS -------------- */
button, .cta-btn {
  cursor: pointer;
  transition: background .19s, color .17s, box-shadow 0.18s;
  outline: none;
}
button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 3px #efe1cf3c;
}
input, textarea, select {
  font-size: 1rem;
  font-family: inherit;
  border-radius: 7px;
  border: 1.2px solid #e1d4c2;
  padding: 8px 12px;
  margin-bottom: 14px;
  background: #fff;
  color: #374151;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C3A179;
  outline: none;
}

/* COOKIE CONSENT BANNER --------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2d2d2d;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
  justify-content: space-between;
  padding: 20px 30px 20px 32px;
  font-size: 1rem;
  z-index: 1999;
  box-shadow: 0 -3px 18px rgba(55,65,81,0.19);
  animation: slideInCookieBanner 0.7s cubic-bezier(.43,.11,.17,1);
}
@keyframes slideInCookieBanner {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  padding: 8px 20px;
  font-weight: 600;
  background: #C3A179;
  color: #fff;
  transition: background 0.18s, color 0.15s;
  margin-right: 4px;
}
.cookie-banner button.cookie-reject {
  background: #374151;
  color: #fff;
  border: 1.5px solid #C3A179;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #374151;
  border: 1.5px solid #C3A179;
}
.cookie-banner button:hover {
  background: #ab9778;
  color: #fff;
}
.cookie-banner button.cookie-settings:hover {
  background: #efe1cf;
  color: #ab9778;
}
.cookie-banner button:focus {
  box-shadow: 0 0 0 2px #C3A17988;
}

/* COOKIE MODAL ----------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) scale(0.95);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(55,65,81,.16);
  z-index: 2100;
  max-width: 420px;
  width: 92vw;
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popupModal .33s cubic-bezier(.49,.17,.39,1);
}
@keyframes popupModal {
  from { opacity: 0; transform: translate(-50%, -75%) scale(0.80); }
  to { opacity: 1; transform: translate(-50%, -60%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  margin-left: 14px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.cookie-modal button {
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(90deg, #C3A179 50%, #e0c6a2 100%);
  color: #fff;
  border: none;
}
.cookie-modal button.cookie-cancel {
  background: #ebe2d7;
  color: #374151;
  border: 1.3px solid #C3A179;
}
.cookie-modal button:hover {
  background: #ab9778;
  color: #fff;
}
.cookie-modal button.cookie-cancel:hover {
  background: #efe1cf;
  color: #C3A179;
}

/* Switch for Cookie Modal */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.switch input { display:none; }
.switch .slider {
  position: absolute;
  cursor: pointer;
  background-color: #eee;
  border-radius: 22px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: .4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #C3A179;
  border-radius: 50%;
  transition: .4s;
}
.switch input:checked + .slider {
  background-color: #e7dbc6;
}
.switch input:checked + .slider:before {
  background-color: #C3A179;
  transform: translateX(18px);
}

/* UTILITY CLASSES --------------------------- */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.text-center { text-align: center; }

/* RESPONSIVE DESIGN ------------------------- */
@media (max-width: 1140px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  header nav {
    gap: 12px;
  }
  .container { max-width: 99vw; }
  .feature-grid > div, .card {
    min-width: 180px;
    flex: 1 1 180px;
  }
}
@media (max-width: 768px) {
  .container,
  .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 12px 10px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    padding: 12px 20px;
    font-size: 0.97rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 24px;
    min-height: 200px;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 1.44rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .team-members {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }
  .section {
    padding: 26px 5px;
    margin-bottom: 40px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer .container, footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    padding-left: 8px;
    padding-right: 8px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 16px 13px 18px 13px;
    font-size: 0.97rem;
  }
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 1.22rem; }
  h2 { font-size: 1.05rem; }
  footer img { height: 29px; }
  .team-member, .card, .feature-grid > div {
    padding: 13px 8px;
  }
  .cookie-modal {
    padding: 23px 9px 18px 12px;
  }
}

/* ANIMATIONS FOR BUTTONS ------------------- */
.cta-btn, button, .cookie-banner button, .cookie-modal button {
  transition: background 0.26s cubic-bezier(.44,.15,.23,1),
              color 0.17s cubic-bezier(.52,.16,.41,1),
              box-shadow 0.19s cubic-bezier(.37,.09,.31,1),
              transform 0.11s cubic-bezier(.56,.23,.41,1);
}
.cta-btn:active, button:active {
  transform: scale(0.97);
}

/* OVERRIDE AUTO LAYOUT MARGINS IF NEEDED ---- */
.section > *,
.feature-grid > *,
.card-container > *,
.content-grid > *,
.team-members > *,
footer .content-wrapper > *,
.contact-info > * {
  margin-bottom: 0;
}

/* VISUAL HIERARCHY ------------------------- */
.section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 22px rgba(195,161,121,0.06);
}

/* END CSS */
