/* ============================== RESET & NORMALIZE ============================== */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 0;
}
img, picture {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #FAF6F2;
  color: #29413a;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --color-primary: #1D3557;
  --color-secondary: #A8DADC;
  --color-accent: #F1FAEE;
  --color-earth: #C9B49B;
  --color-forest: #355346;
  --color-green-accent: #88B04B;
  --color-sand: #EFE7DC;
  --color-brown: #8B7A5F;
  --color-shadow: rgba(43, 58, 38, 0.10);
  --border-radius-lg: 28px;
  --border-radius-md: 18px;
  --border-radius-sm: 10px;
  --shadow-card: 0 4px 20px var(--color-shadow);
  --transition: all 0.18s cubic-bezier(.17,.67,.6,1.20);
}

/* ============================== TYPOGRAPHY ====================================*/
h1, .h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: 16px;
  line-height: 1.15;
}
h3, .h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.hero h1, .hero .h1 {
  font-size: 2.8rem;
  color: var(--color-forest);
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  color: var(--color-brown);
  font-weight: 400;
  margin-bottom: 26px;
  line-height: 1.3;
}
p {
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
a {
  transition: var(--transition);
}
a:hover, a:focus {
  color: var(--color-green-accent);
}

/* ============================== LAYOUT CONTAINERS ================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
content-wrapper, .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Content grid for custom card displays: mobile column, desktop row */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-accent);
  padding: 24px 22px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
.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;
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 26px rgba(43, 58, 38, 0.12);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 500px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================== HEADER & NAVIGATION ============================*/
header {
  width: 100%;
  background: var(--color-sand);
  box-shadow: 0 1px 16px rgba(43, 58, 38, 0.03);
  margin-bottom: 6px;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 14px 18px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 90px 28px 64px 48px/48px 32px 90px 36px;
  background: #EDE8DF;
  padding: 2px 10px 2px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-size: 1rem;
  color: var(--color-brown);
  font-weight: 500;
  padding: 8px 9px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  position: relative;
}
.main-nav a.cta {
  background: var(--color-green-accent);
  color: #fff;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 29px 20px 39px 15px/19px 38px 19px 28px;
  box-shadow: 0 4px 18px rgba(102, 143, 58, 0.11);
  margin-left: 18px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #5e8635;
  color: #F1FAEE;
}

.mobile-menu-toggle {
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 101;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(29,53,87,0.08);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #3B543A;
}

/* ------------------- MOBILE NAV OVERLAY ------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(130deg, #F1FAEE 85%, #C9B49B 100%);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 180;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.17,.67,.6,1.20);
  box-shadow: -2px 0 32px rgba(22,32,11,0.11);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--color-green-accent);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  margin: 26px 21px 7px 0;
  cursor: pointer;
  align-self: flex-end;
  box-shadow: 0 2px 14px 0 rgba(136, 176, 75, .10);
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #49702d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 24px 36px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 21px 12px 31px 23px/24px 33px 17px 18px;
  transition: var(--transition);
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #17303C;
}

/* Hide main nav on mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============================== HERO SECTION ================================ */
.hero {
  background: 
    radial-gradient(circle at 60% 42%, #A8DADC 0%, #F1FAEE 100%) no-repeat;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 62px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 20px rgba(43, 58, 38, 0.07);
  overflow: hidden;
}
.hero .container {
  height: 100%;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}
.hero .cta {
  margin-top: 16px;
}

/* ============================== FEATURE LISTS ============================== */
.features {
  background: #f6f4ef;
  border-radius: var(--border-radius-lg);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 18px 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  font-size: 1.06rem;
  color: var(--color-forest);
  padding: 16px 0 10px 0;
  gap: 16px;
  border-bottom: 1px dashed #DDE1DC;
}
.feature-list li:last-child {
  border-bottom: 0;
}
.feature-list img {
  width: 32px;
  height: 32px;
  background: var(--color-secondary);
  border-radius: var(--border-radius-sm);
  padding: 4px;
  margin-right: 10px;
}

/* ========================== SERVICE LIST STYLING =========================== */
.services, .service-overview {
  background: #f5f6ef;
  border-radius: var(--border-radius-lg);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0 18px 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  background: #fff;
  box-shadow: 0 2px 14px rgba(43, 58, 38, 0.08);
  border-radius: var(--border-radius-md);
  padding: 20px 22px 17px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 190px;
  transition: box-shadow 0.2s;
}
.service-list li:hover {
  box-shadow: 0 8px 36px rgba(43, 58, 38, 0.13);
}
.service-list h3 {
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--color-green-accent);
}
.service-list .price {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}

.services-table {
  width: 100%;
  border-spacing: 0;
  margin: 24px 0;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 24px rgba(201, 180, 155, 0.06);
  background: #FAF8F2;
}
.services-table th, .services-table td {
  padding: 16px 16px;
  text-align: left;
  font-size: 1rem;
}
.services-table th {
  background: var(--color-earth);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.06rem;
  letter-spacing: .1px;
}
.services-table tbody tr:nth-child(even) {
  background: #f6f4ef;
}

.service-details h3 {
  margin-top: 24px;
}

/* ================================= ABOUT & TEAM ============================= */
.about, .about-values, .about-team {
  background: #F3F7F5;
  border-radius: var(--border-radius-lg);
}
.about-team .team-bios {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0 26px 0;
  list-style: none;
}
.checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 0 0;
}
.checks li::before {
  content: '✓';
  color: var(--color-green-accent);
  margin-right: 10px;
  font-weight: bold;
}

/* ============================== TESTIMONIALS =============================== */
.testimonials {
  background: #e7efe8;
  border-radius: var(--border-radius-lg);
}
.testimonials .content-wrapper {
  gap: 32px;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
}
.testimonial-card {
  background: #fff;
  color: #222E1B;
  border-left: 6px solid var(--color-green-accent);
  padding: 28px 26px 18px 22px;
  box-shadow: 0 6px 24px rgba(43, 58, 38, 0.11);
  border-radius: var(--border-radius-md);
  font-size: 1.08rem;
  margin-bottom: 24px;
}
.testimonial-card .testimonial-name {
  font-size: 1rem;
  color: var(--color-forest);
  padding-top: 6px;
  font-weight: 700;
}
.testimonial-card .stars {
  color: #FBBC05;
  font-size: 1.22rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* ======================== CONTACT & MAP ================================= */
.contact-section {
  background: #f7faf7;
  border-radius: var(--border-radius-lg);
  margin-bottom: 60px;
  padding: 40px 18px 30px 18px;
}
.address-details {
  margin-bottom: 32px;
}
.map-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #EAE7DE;
  border-radius: var(--border-radius-md);
  padding: 22px 18px;
  margin-top: 0px;
  font-size: 1.06rem;
}
.map-placeholder img {
  width: 46px;
  height: 46px;
}

/* ============================= CARDS, TEXT BLOCKS ========================= */
.galerie-inspiration, .locations-list, .location-advantage, .personal-note, .thank-you {
  background: #F8FBEF;
  border-radius: var(--border-radius-lg);
}
.text-section {
  margin: 0 0 24px 0;
}

/* ======================= ACCORDION FAQ =================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 23px;
}
.faq-item {
  background: #F2FFF3;
  border-radius: var(--border-radius-md);
  box-shadow: 0 2px 14px rgba(43, 58, 38, 0.06);
  padding: 19px 18px 10px 22px;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: var(--color-primary);
}
.faq-answer {
  color: var(--color-brown);
  font-size: 0.99rem;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 20px rgba(136, 176, 75, 0.11);
}

/* =============================== FOOTER =================================== */
footer {
  background: #eae7de;
  padding: 48px 0 32px 0;
  width: 100%;
  border-top-right-radius: 38px 48px;
  border-top-left-radius: 47px 19px;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: var(--color-brown);
  font-size: 1rem;
  padding: 7px 0;
  font-weight: 500;
  border-radius: 7px;
  transition: background .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: #1D3557;
}
.footer-contact {
  color: var(--color-primary);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-top: 10px;
}

/* =============================== BUTTONS ================================== */
.cta, .btn, button {
  display: inline-block;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: var(--color-green-accent);
  color: #fff;
  border-radius: 26px 32px 16px 32px/16px 22px 32px 26px;
  padding: 12px 34px;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(136,176,75,0.15);
  border: none;
  outline: none;
  transition: background .24s, box-shadow 0.21s cubic-bezier(.15,.46,.55,1.38);
  cursor: pointer;
}
.cta:hover, .btn:hover, .cta:focus, .btn:focus {
  background: #3B543A;
}
button:active {
  transform: translateY(1px) scale(0.98);
}

/* =========================== COOKIE CONSENT ================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  left: 0;
  background: rgba(250,246,242,0.98);
  color: #193A2B;
  box-shadow: 0 -2px 24px rgba(61, 70, 55, 0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 19px 22px;
  z-index: 850;
  gap: 24px;
  font-size: 1.02rem;
  transition: transform .33s cubic-bezier(.17,.67,.6,1.20);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  background: var(--color-green-accent);
  color: #fff;
  border-radius: var(--border-radius-md);
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 5px;
  transition: background .23s;
}
.cookie-banner .cookie-btn.secondary {
  background: var(--color-earth);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-forest);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #49702D;
  color: #fff;
}
.cookie-banner .cookie-btn.secondary:hover,
.cookie-banner .cookie-btn.secondary:focus {
  background: #8B7A5F;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #74b09e;
  color: #153328;
}
/* Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 900;
  background: rgba(29,53,87,0.39);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .23s cubic-bezier(.21,.5,.33,1.02);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 48px rgba(18,42,14,0.16);
  max-width: 430px;
  width: 90vw;
  padding: 40px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  animation: cookieModalSlideIn .34s cubic-bezier(.77,.19,.42,.94);
}
@keyframes cookieModalSlideIn {
  0% {transform: translateY(34px) scale(0.96); opacity: 0.16;}
  80% {transform: translateY(-7px) scale(1.03); opacity: 1;}
  100% {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal .cookie-modal-close {
  background: var(--color-green-accent);
  color: #fff;
  border-radius: 50%;
  width: 35px; height: 35px;
  align-self: flex-end;
  font-size: 1.13rem;
  border: none;
  cursor: pointer;
}
.cookie-modal h3 {
  font-size: 1.21rem; font-family: 'Playfair Display', serif; color: var(--color-primary);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 9px; margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-toggle {
  margin-left: 6px; accent-color: var(--color-green-accent);
}
/* ========================= RESPONSIVE DESIGN ============================ */
@media (max-width: 980px) {
  .container {
    max-width: 98vw;
    padding: 0 7vw;
  }
  .footer-logo img {
    height: 36px;
  }
  header .container {
    flex-direction: row;
    padding: 13px 5vw 11px 5vw;
  }
  .hero {
    min-height: unset;
    padding: 40px 0 32px 0;
  }
  .footer-contact, .footer-nav {
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.3rem;
  }
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .footer-logo img {
    height: 26px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 5px;
  }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .about-team .team-bios {
    gap: 14px;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 6px;
    padding: 15px 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 8vw;
  }
}
@media (max-width: 560px) {
  .hero .content-wrapper, .content-wrapper {
    max-width: 98vw;
    padding: 0 2vw;
  }
}

/* ========================== GENERAL FLEXBOX ALIGNMENT =================== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.text-image-section {
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ====================== MICRO-INTERACTIONS & TRANSITIONS ================ */
.card, .testimonial-card, .faq-item {
  transition: box-shadow 0.14s cubic-bezier(.17,.67,.6,1.20), transform .18s;
}
.card:hover, .testimonial-card:hover, .faq-item:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 8px 24px rgba(29,53,87,0.13);
}
.cta, .btn {
  transition: background 0.21s cubic-bezier(.17,.67,.6,1.20), box-shadow 0.18s cubic-bezier(.17,.67,.6,1.20), transform 0.11s;
}
.cta:active, .btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 6px rgba(29,53,87,0.11);
}

/* =================== HELPFUL STYLES - MISC ===================== */
::-webkit-scrollbar {width: 9px; background: #EFE7DC;}
::-webkit-scrollbar-thumb {background: #C9B49B; border-radius: 9px;}
::selection {background: var(--color-secondary); color: #23331C;}

/* Hide cookie banner/modal on .cookie-banner.hide/.cookie-modal.hide */
.cookie-banner.hide {transform: translateY(100%); pointer-events: none; opacity: 0;}

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