/* RESET & NORMALIZE */
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,
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-size: 16px;
  background: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #344055;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  padding-left: 1.2em;
}
a {
  text-decoration: none;
  color: #344055;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F8B4A6;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  color: #344055;
}
h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.2;
}
h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 14px 0;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
p, address, ul, ol, li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #344055;
  margin-bottom: 14px;
}
.subtitle {
  font-size: 1.25rem;
  color: #916A5D;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}
strong {
  font-weight: 600;
}

/* CORE LAYOUT */
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(52,64,85,0.06);
  position: relative;
  z-index: 80;
  min-height: 30px;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
}
.main-nav > a > img {
  height: 46px;
  width: auto;
  margin-right: 12px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.main-nav li {
  position: relative;
}
.main-nav li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #344055;
  font-size: 1rem;
  padding: 6px 0;
  font-weight: 500;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
.main-nav li a:hover, .main-nav li a:focus {
  color: #F8B4A6;
  border-bottom: 2px solid #F8B4A6;
}
.cta-btn {
  background: #344055;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 28px;
  padding: 10px 30px;
  margin-left: 24px;
  box-shadow: 0 2px 10px rgba(52,64,85,0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F8B4A6;
  color: #344055;
  border-color: #F8B4A6;
  box-shadow: 0 4px 16px rgba(248,180,166,0.12);
}

/* Burger menu Button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 2.1rem;
  background: #F8B4A6;
  color: #344055;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 120;
  border: none;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #d18d7f;
  color: #fff;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(52,64,85,0.97);
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.72,0,0.24,1);
  width: 100vw;
  height: 100vh;
  padding-top: 50px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2.3rem;
  color: #fff;
  background: #F8B4A6;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.15s;
  z-index: 201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #d18d7f;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
  width: 100vw;
  text-align: left;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 11px 0 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F8B4A6;
  border-bottom: 2px solid #F8B4A6;
}

@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 980px) {
  .main-nav ul {
    gap: 16px;
  }
  .main-nav {
    gap: 16px;
  }
  .cta-btn {
    margin-left: 10px;
  }
}
@media (max-width: 820px) {
  .main-nav ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    justify-content: flex-start;
    gap: 4px;
  }
  .container {
    padding: 0 6px;
  }
}

/* HERO & GENERAL SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 768px) {
  section {
    padding: 25px 0 25px 0;
    margin-bottom: 36px;
  }
}

.text-section {
  margin: 0 0 12px 0;
  padding: 0;
  max-width: 680px;
}
.text-section ul, .text-section ol {
  margin-bottom: 12px;
  padding-left: 2em;
}

/* FLEX UTILITY - per design requirements */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .features-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(52,64,85,0.08);
  padding: 28px 18px 22px 18px;
  min-width: 220px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.17s;
  border: 1px solid #ede7e3;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 28px rgba(248,180,166,0.16);
  transform: translateY(-3px) scale(1.01);
}
.feature-item img {
  width: 40px; height: 40px;
  margin-bottom: 4px;
}

/* SERVICES LIST, CARDS ETC. */
.services-list {
  margin: 20px 0 16px 0;
  padding: 0;
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-list li a {
  color: #344055;
  font-weight: 600;
  transition: color 0.2s;
}
.services-list li a:hover, .services-list li a:focus {
  color: #F8B4A6;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(52,64,85,0.09);
  padding: 26px 22px;
  transition: box-shadow 0.21s, transform 0.16s;
  border: 1px solid #ede7e3;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 22px rgba(248,180,166,0.15);
  transform: translateY(-2px) scale(1.01);
}

.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) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 18px 28px;
  border-radius: 16px;
  background: #faf7f6;
  box-shadow: 0 2.5px 12px rgba(52,64,85,0.07);
  border: 1.5px solid #F8B4A6;
  min-width: 260px;
  max-width: 360px;
  flex: 1 0 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
  color: #23232B;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #23232B;
  text-align: center;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.testimonial-author {
  font-size: 1rem;
  color: #916A5D;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(248,180,166,0.16);
  transform: translateY(-2px) scale(1.01);
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(52,64,85,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 16px 8px;
  border: 1px solid #ede7e3;
}
.pricing-table th {
  background: #344055;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.pricing-table td {
  background: #fff;
  color: #344055;
}

/* FOOTER */
footer {
  background: #f8f4f2;
  border-top: 1px solid #ede7e3;
  padding: 0 0 10px 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 12px 0;
}
.footer-logo-contact {
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo-contact img {
  height: 46px;
  margin-bottom: 8px;
}
.footer-logo-contact address {
  font-style: normal;
  color: #344055;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #344055;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: #F8B4A6;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  transition: background 0.21s, transform 0.15s;
  display: inline-flex;
}
.footer-social a:hover, .footer-social a:focus {
  background: #F8B4A6;
  transform: scale(1.08);
}
.footer-social img {
  width: 26px;
  height: 26px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.99rem;
  color: #916A5D;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .footer-wrapper {
    padding: 30px 0 12px 0;
  }
  .footer-logo-contact img {
    height: 40px;
  }
}

/* MISC/GENERAL UTILITY */
::-webkit-input-placeholder { color: #abb2c5; }
::-moz-placeholder { color: #abb2c5; }
:-ms-input-placeholder { color: #abb2c5; }
::placeholder { color: #abb2c5; }

hr {
  border: none;
  border-bottom: 1px solid #ede7e3;
  margin: 36px 0;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #344055;
  color: #fff;
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -2px 16px rgba(52,64,85,0.12);
  z-index: 1000;
  animation: cookieIn 0.3s ease-in;
}
.cookie-banner__text {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-right: 30px;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: #fff;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #344055;
  font-weight: 600;
  padding: 8px 22px;
  border: none;
  box-shadow: 0 1px 10px rgba(52,64,85,0.05);
  margin: 0 3px;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F8B4A6;
  color: #fff;
}
.cookie-btn.cookie-accept {
  background: #F8B4A6;
  color: #344055;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #344055;
  color: #fff;
}
@keyframes cookieIn {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1020;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(52,64,85,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.3s cubic-bezier(.6,0,.3,1);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 44px rgba(52,64,85,0.25);
  padding: 38px 26px 30px 26px;
  max-width: 98vw;
  width: 98vw;
  max-width: 430px;
  color: #344055;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalScaleIn 0.26s cubic-bezier(.54,1.5,.69,1);
}
@keyframes cookieModalScaleIn {
  0% { transform: scale(0.97); opacity: 0; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1.0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 7px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cookie-modal-category {
  padding-bottom: 10px;
}
.cookie-modal-category input[type="checkbox"]:not(:checked) + span {
  opacity: 0.7;
}
.cookie-modal-btns {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 16px;
  font-size: 1.6rem;
  background: #fff;
  color: #344055;
  border: none;
  border-radius: 10px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F8B4A6;
  color: #fff;
}

/* Inputs for cookie modal */
.cookie-modal input[type="checkbox"] {
  accent-color: #F8B4A6;
  width: 18px;
  height: 18px;
}
.essential-category {
  opacity: 0.4;
  pointer-events: none;
}

/* Responsive for cookie banner/modal */
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 6px 11px 9px;
  }
  .cookie-banner__text {
    margin-right: 0;
  }
  .cookie-modal {
    padding: 20px 9px 15px 13px;
    max-width: 97vw;
  }
}

/* ANIMATIONS/MICRO-INTERACTIONS */
button, .cta-btn, .cookie-btn {
  transition: background 0.20s, color 0.20s, box-shadow 0.13s, border 0.17s, transform 0.14s;
}

section, .card, .feature-item, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s;
}

button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid #F8B4A6;
  outline-offset: 2px;
}

/* -------- Responsiveness (mobile-first) ------- */
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .section, section { padding: 20px 0 20px 0; }
  .card, .feature-item, .testimonial-card { padding: 14px 8px; min-width: 0; }
}

@media (max-width: 440px) {
  .footer-logo-contact img { height: 32px; }
  .footer-social img { width: 20px; height: 20px; }
  .main-nav > a > img { height: 33px; }
}

/* ---- Utility margin/gaps for strict spacing requirements ---- */
.section, section, .feature-item, .card, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .content-grid, .features-grid, .testimonial-slider {
  gap: 20px;
}
