/* == CSS 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,
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; scroll-behavior:smooth; }
body {
  background: #F4F0EC;
  color: #222;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; outline: none; }
a { color: inherit; text-decoration: none; background: transparent; transition: color 0.2s; }

/* == FONTS & BRAND VARIABLES == */
:root {
  --primary: #374151;
  --secondary: #A18C5F;
  --accent: #F4F0EC;
  --vibrant1: #f7418f;
  --vibrant2: #36f9dd;
  --vibrant3: #fff200;
  --cta-gradient: #f7418f;
  --cta-hover: #36f9dd;
  --dark: #171717;
  --body: 'Roboto', Arial, sans-serif;
  --display: 'Playfair Display', Georgia, serif;
  --shadow-card: 0 4px 28px 0 rgba(55,65,81,0.09), 0 1.5px 4.5px 0 rgba(247,65,143,0.13);
  --shadow-cta: 0 2px 8px 0 rgba(54,249,221,0.14);
  --radius: 18px;
}

html, body {
  font-family: var(--body);
  background: var(--accent);
  color: var(--primary);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
body {
  background: var(--accent);
  min-height: 100vh;
}

/* == GENERAL TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--primary);
  letter-spacing: 0.01em;
  font-weight: 900;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  color: var(--vibrant1);
  line-height: 1.11;
  margin-bottom: 18px;
  font-weight: 900;
  text-shadow: 0 2px 0 #fff20040, 0 1px 0 #fae39c80;
}
h2 {
  font-size: 1.7rem;
  color: var(--vibrant2);
  margin-bottom: 16px;
  font-weight: 800;
}
h3 {
  font-size: 1.25rem;
  color: var(--vibrant3);
  font-weight: 700;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 800;
}
.text-section h3 {
  color: var(--vibrant1);
  margin-bottom: 8px;
}
.text-section strong {
  color: var(--vibrant2);
}

/* == LAYOUT CONTAINERS == */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 24px 24px 18px 24px;
  transition: box-shadow .19s cubic-bezier(.68,1.3,.5,1), transform .18s;
  min-width: 250px;
}
.card:hover,
.hover-card:hover {
  box-shadow: 0 6px 32px 2px #f7418f33, 0 2px 14px 0 #36f9dd1a;
  transform: translateY(-7px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 #3741510f;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* == VIBRANT/ENERGETIC FEATURE CARDS == */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 18px 0;
  padding-left: 0;
}
.feature-grid > li {
  background: linear-gradient(100deg, #fff 90%, #36f9dd20 100%);
  box-shadow: 0 2px 12px 0 #36f9dd19;
  border-radius: var(--radius);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow .16s, transform .18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.feature-grid > li:hover {
  background: linear-gradient(110deg, #f7418f21 80%, #36f9dd12);
  box-shadow: 0 8px 40px 2px #f7418f33, 0 2px 18px 0 #36f9dd1a;
  transform: translateY(-5px) scale(1.02);
}
.hover-card {
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.hover-card h3 {
  color: var(--vibrant1);
  margin-bottom: 8px;
}
.hover-card ul {
  margin-top: 8px;
  list-style: disc inside;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 0 #fff20050);
}
.feature-grid h3 {
  font-size: 1.18rem;
  margin-bottom: 7px;
  line-height: 1.13;
}

/* == HERO SECTION == */
.hero {
  background: linear-gradient(98deg, #fff 80%, #36f9dd14 115%, #f7418f02 120%);
  border-bottom: 4px solid var(--vibrant2);
  margin-bottom: 40px;
  padding: 48px 0 36px 0;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--vibrant1);
  margin-bottom: 16px;
  font-weight: 900;
  text-align: left;
}
.hero p {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 22px;
  max-width: 520px;
}

/* == BUTTONS / CTAs == */
.cta-btn {
  font-family: var(--body);
  font-weight: bold;
  font-size: 1.09rem;
  display: inline-block;
  color: #fff;
  background: var(--vibrant1);
  border-radius: calc(var(--radius) * 0.74);
  padding: 0.8em 2.2em;
  margin-top: 10px;
  letter-spacing: .05em;
  box-shadow: var(--shadow-cta);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background .19s,box-shadow .24s,transform .16s,color .19s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vibrant2);
  color: #111;
  box-shadow: 0 2px 8px 0 #36f9dd2f, 0 5px 25px 0 #f7418f1f;
  transform: translateY(-1.5px) scale(1.042);
}

/* == HEADER/NAV == */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 #37415111;
  position: sticky; top:0; left:0; right:0; z-index: 40;
  min-height: 67px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}
header img {
  height: 44px; width: auto;
  margin-right: 26px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-right: auto;
  margin-left: 30px;
}
.main-nav a {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 13px 7px 13px;
  border-radius: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .19s, color .17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--vibrant1);
  color: #fff;
}
.main-nav a.active {
  font-weight: 900;
  background: var(--vibrant3);
  color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--vibrant1);
  font-size: 2.05rem;
  border: none;
  margin-left: 1em;
  z-index: 70;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  transition: color .18s;
}
.mobile-menu-toggle:hover { color: var(--vibrant2); }

/* == MOBILE MENU == */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(55,65,81,0.96);
  transition: transform .38s cubic-bezier(.82,-0.01,.27,1.09);
  transform: translateX(100vw);
  flex-direction: column;
  align-items: flex-end;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  color: #fff200;
  border: none;
  margin: 20px 24px 26px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover { color: #f7418f; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 24px 16px 32px;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.015em;
  padding: 14px 8px 11px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: color .18s, border-color .15s, background .23s;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fff200;
  background: #f7418f1b;
  border-bottom: 2.5px solid #36f9dd;
}

/* == TESTIMONIALS == */
.testimonials .testimonial-card {
  background: #fff;
  color: #222;
  box-shadow: 0 4px 24px 0 #37415117;
  border-left: 7px solid #f7418f;
  font-style: italic;
  padding: 28px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  gap: 18px;
}
.testimonial-card p {
  color: #1a202c;
  font-size: 1.09rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--secondary);
  font-style: normal;
  font-weight: 700;
  font-size: 0.96rem;
  margin-left: 14px;
  white-space: nowrap;
}

/* == ABOUT, SERVICES, MAP == */
.about, .services {
  background: linear-gradient(95deg, #fff 80%, #f7418f0f);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px 0 #36f9dd11;
  margin-bottom: 60px;
}
.text-section {
  margin-bottom: 18px;
}
.text-section ul, .text-section ol {
  margin-left: 1.2em;
  margin-bottom: 12px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 4px;
  font-size: 1rem;
}
.map-placeholder {
  width: 100%;
  min-height: 180px;
  background: #EFF5FB;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px #37415114;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A18C5F;
  font-style: italic;
  font-size: 1.08rem;
  margin-top: 15px;
  margin-bottom: 8px;
}

/* == FOOTER == */
footer {
  background: #374151;
  color: #fff;
  padding: 32px 0 15px 0;
  box-shadow: 0 -2px 8px #36f9dd13;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  padding: 3px 4px 3px 0;
  opacity: .82;
  font-weight: 600;
  transition: color .14s, opacity .12s;
}
.footer-nav a:hover { color: #fff200; opacity: 1; }
.footer-brand img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 1.5px 0 #f7418f80);
}

/* == COOKIE CONSENT == */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: #fff;
  color: #16171d;
  box-shadow: 0 -4px 40px #36f9dd29;
  padding: 23px 14px 18px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  min-height: 52px;
  width: 100vw;
  transition: transform .36s cubic-bezier(.56,.18,.34,1);
}
.cookie-message {
  flex: 2 1 300px;
  font-size: 1rem;
  color: #333;
  margin-right: 12px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn,
.cookie-settings-btn {
  border-radius: 100px;
  border: none;
  padding: 0.5em 1.65em;
  font-size: 1rem;
  font-family: var(--body);
  font-weight: bold;
  cursor: pointer;
  background: var(--vibrant1);
  color: #fff;
  box-shadow: 0 2px 8px #f7418f22;
  transition: background .16s, color .15s;
}
.cookie-btn.accept:hover { background: var(--vibrant2); color: #222; }
.cookie-btn.reject { background: #fff200; color: #222; }
.cookie-btn.reject:hover { background: #fff; color:var(--vibrant1); border:1px solid #f7418f; }
.cookie-settings-btn { background: var(--secondary); color: #fff;}
.cookie-settings-btn:hover { background: var(--vibrant2); color:#222; }

/* == COOKIE MODAL == */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(55,65,81,0.81);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 6vw;
  animation: cookieFadeIn .3s ease;
}
@keyframes cookieFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  width: 95%;
  max-width: 420px;
  background: #fff;
  color: #222;
  border-radius: 25px;
  box-shadow: 0 10px 40px #36f9dd22;
  padding: 32px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookieSlideIn .32s cubic-bezier(.72,-0.04,.42,1.1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(64px); opacity: 0.2; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--vibrant1);
  font-size: 1.35rem;
  margin-bottom: 15px;
}
.cookie-modal .close {
  position: absolute;
  right: 17px; top: 14px;
  background: none;
  color: #f7418f;
  font-size: 1.48rem;
  border: none;
  cursor: pointer;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
}
.cookie-pref-item label {
  font-weight: 600;
  color: var(--primary);
  margin-right: 3px;
}
.cookie-pref-toggle {
  accent-color: var(--vibrant2);
}
.cookie-pref-item[data-essential='true'] label {
  color: var(--secondary);
}

/* == RESPONSIVE DESIGN | MOBILE-FIRST == */
@media (max-width: 1060px) {
  .container { max-width: 1000px; }
  .feature-grid > li, .card { min-width: 180px; }
}
@media (max-width: 900px) {
  .container { max-width: 770px; }
  .feature-grid {
    gap: 16px;
  }
  .features .feature-grid > li, .card {
    min-width: 130px;
    padding: 19px 12px;
  }
  header .container { flex-wrap: wrap; }
  .footer-brand img {
    height: 32px;
  }
}
@media (max-width: 768px) {
  html, body { font-size: 15px; }
  .container { max-width: 98vw; padding: 0 8px; }
  .content-wrapper { gap: 20px; }
  .main-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block; }
  header img { height: 37px; margin-right: 10px; }
  .hero {
    padding: 36px 0 20px 0;
    margin-bottom: 30px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.12rem;}
  .feature-grid {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid > li, .card {
    min-width: 0;
    flex: 1 1 99%;
    padding: 16px 10px;
    margin-bottom: 6px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 14px 10px;
  }
  .about, .services { padding: 22px 10px; margin-bottom:30px; }
  .section { margin-bottom: 30px; padding: 20px 8px; }
  footer .container { flex-direction: column; gap: 7px; }
  .footer-nav { flex-direction: column; gap: 7px; }
  .footer-brand img { height:24px; }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 16px; }
  .card-container,
  .content-grid { flex-direction: column; gap: 8px; }
  .contact .map-placeholder {
    min-height: 110px;
    font-size: .97rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    min-height: 30px;
    padding: 16px 4px 13px 8px;
  }
  .cookie-message { margin-right: 0; }
  .cookie-actions { gap: 7px; }
  .cookie-modal { padding: 20px 8px 15px 12px; }
}
@media (max-width: 430px) {
  html,body { font-size: 14px; } 
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.05rem; }
  .hero { padding-top: 16px; }
  .cta-btn, .cookie-btn, .cookie-settings-btn { font-size: 0.97rem; padding: 0.6em 1.1em; }
  .testimonial-card, .feature-grid>li, .card { padding-left:4px; padding-right:4px; font-size: 0.95rem; }
} 

/* == SCROLLBARS (for vibrancy) == */
::-webkit-scrollbar {
  width: 8px;
  background: #36f9dd13;
}
::-webkit-scrollbar-thumb {
  background: #f7418f44;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f7418f88;
}

/* == UTILITY CLASSES == */
.mt-0 { margin-top:0!important; }
.mb-0 { margin-bottom:0!important; }
.mx-auto { margin-left:auto!important; margin-right:auto!important; }

/* == ANIMATIONS/MICRO-INTERACTIONS == */
.card, .feature-grid > li, .testimonial-card {
  transition: box-shadow .23s cubic-bezier(.68,1.3,.5,1), transform .18s cubic-bezier(.64,1.1,.34,1.18);
}
.cta-btn, .cookie-btn, .cookie-settings-btn {
  transition: background .17s cubic-bezier(.72,-0.06,.6,1.08), color .18s, transform .16s;
}
.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.98);
}

/* == NO GRID OR ABSOLUTE POSITIONING (except for decorations) == */
/* Only used position: absolute for close-buttons and cookie modal X. */

/* == END OF STYLE == */
