/* StilKompass – Playful Dynamic CSS Theme */
/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  background: #FFFDF9;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #232537;
  background: #FFFDF9;
  line-height: 1.6;
  min-height: 100vh;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
a {
  color: #AD7C4D;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  word-break: break-word;
}
a:hover, a:focus {
  color: #E6C9A8;
  outline: none;
}
ul { list-style: disc inside; margin-left: 1.2em; }
li { margin-bottom: 8px; }
/*-------------------------------------*
    BRAND COLORS, FONTS & VARS
*-------------------------------------*/
:root {
  --color-primary: #232537;
  --color-secondary: #E6C9A8;
  --color-accent: #AD7C4D;
  --color-accent2: #9A6B39;
  --color-white: #ffffff;
  --color-bg: #FFFDF9;
  --color-error: #FF4C4C;
  --shadow-card: 0 4px 24px rgba(173,124,77,0.07), 0 2px 8px rgba(35,37,55,0.06);
  --shadow-glow: 0 0 0 2px #E6C9A8, 0 3px 16px rgba(173,124,77,0.12);
  --radius: 22px;
  --radius-btn: 32px;
  --radius-card: 20px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}
/*-------------------------------------*
    LAYOUT CONTAINERS & SPACING
*-------------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid, .service-list, .service-grid, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid > div, .service-list > div, .service-grid > div {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 24px 22px;
  flex: 1 1 280px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  animation: fadeInUp .7s cubic-bezier(.6,1.3,.45,1.01);
}
.feature-grid > div:hover, .service-list > div:hover, .service-grid > div:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px) scale(1.04);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .service-list, .service-grid, .testimonials {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
/*-------------------------------------*
    TYPOGRAPHY
*-------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.4em;
  letter-spacing: .5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  color: var(--color-accent);
  margin-bottom: 10px;
  animation: swingIn 0.95s cubic-bezier(.6,1.3,.45,1.01);
}
h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-top: 16px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.34rem;
  color: var(--color-accent2);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
}
p, li, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.7;
}
strong {
  font-weight: bold;
  color: var(--color-accent2);
}
.note {
  background: #FDF6E7;
  border-left: 4px solid var(--color-accent2);
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--color-primary);
  margin-top: 12px;
  font-size: 1rem;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.social-links span {
  font-size: 1rem;
  margin-right: 8px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  transition: transform 0.15s, filter 0.2s;
  filter: brightness(1) contrast(1.2);
}
.social-links a:hover img {
  transform: scale(1.10) rotate(-7deg);
  filter: brightness(1.3) contrast(1.4);
}
/*-------------------------------------*
    BUTTONS & CTAs
*-------------------------------------*/
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  min-width: 160px;
  margin-top: 12px;
  box-shadow: 0 2px 16px 0 rgba(173,124,77,0.08);
  cursor: pointer;
  transition: background .18s cubic-bezier(.4,0,.2,1), transform .17s;
  position: relative;
  z-index: 2;
  outline: none;
}
.cta-btn.primary {
  background: var(--color-accent2);
  color: #fff;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(230,201,168,0.18);
}
.cta-btn:active {
  transform: scale(0.98);
}
/*-------------------------------------*
    HEADER & NAVIGATION
*-------------------------------------*/
header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-secondary);
  box-shadow: 0 2px 12px 0 rgba(173,124,77,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform 0.15s;
}
.logo:hover img {
  transform: rotate(-6deg) scale(1.08);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-primary);
  border-radius: 24px;
  padding: 9px 17px;
  transition: background .15s, color .18s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent2);
  outline: none;
}
.header .cta-btn {
  margin-left: 16px;
}
@media (max-width: 991px) {
  header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    gap: 5px;
  }
}
@media (max-width: 750px) {
  .main-nav {
    display: none !important;
  }
  .header .cta-btn {
    display: none !important;
  }
}
/*-------------------------------------*
    MOBILE MENU
*-------------------------------------*/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  z-index: 1201;
  background: var(--color-accent2);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(35, 37, 55, 0.10);
  cursor: pointer;
  transition: background 0.22s, color 0.2s, transform .15s;
}
.mobile-menu-toggle:active {
  background: var(--color-accent);
}
@media (max-width: 750px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230,201,168, 0.97);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(.7,.17,.29,.93);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
  will-change: transform;
  box-shadow: 0 0 32px 0 rgba(35,37,55,0.07);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: var(--color-accent2);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.85rem;
  font-family: var(--font-display);
  z-index: 1212;
  box-shadow: 0 2px 8px rgba(35, 37, 55, 0.09);
  transition: background 0.16s, color 0.14s;
  cursor: pointer;
  outline: none;
}
.mobile-menu-close:active { background: var(--color-accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 46px;
  margin-left: 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-primary);
  border-radius: 26px;
  background: var(--color-white);
  padding: 10px 22px;
  font-weight: 700;
  box-shadow: 0 1px 8px 0 rgba(173,124,77,0.06);
  transition: background-color .18s, color .13s, transform .1s;
  min-width: 190px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent2);
  color: #fff;
  outline: none;
  transform: translateX(2px);
}
@media (min-width: 751px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
/*-------------------------------------*
   HERO SECTION
*-------------------------------------*/
.hero-section {
  padding: 52px 0 44px 0;
  background: linear-gradient(88deg, #E6C9A8 80%, #AD7C4D 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 12px 30px 0 rgba(35,37,55,0.08);
  margin-bottom: 60px;
  position: relative;
  animation: slideDown .7s cubic-bezier(.79,1.6,.38,.87);
}
.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
}
.hero-section h1, .hero-section h1 span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-accent2);
}
.hero-section p {
  font-size: 1.19rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 35px 0 30px 0;
    border-radius: 0 0 22px 22px;
    margin-bottom: 36px;
  }
  .hero-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-section h1 { font-size: 2rem; }
  .hero-section p { font-size: 1rem; }
}
/*-------------------------------------*
    CARDS & TESTIMONIALS
*-------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--color-white);
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-secondary);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 7px 0 rgba(35,37,55,0.08);
  margin-bottom: 20px;
  animation: fadeInUp 0.7s cubic-bezier(.18,1.12,.38,.87);
  min-width: 220px;
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-body);
}
.testimonial-card p {
  color: #232537;
  font-size: 1.05rem;
  margin: 0 5px 0 0;
  flex: 1 1 0;
}
.testimonial-card strong {
  color: var(--color-accent2);
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px;
  }
}
/*-------------------------------------*
    PRICING TABLE
*-------------------------------------*/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px 0 rgba(35,37,55,0.07);
}
.pricing-table th,
.pricing-table td {
  padding: 18px 14px;
  text-align: left;
  font-size: 1.04rem;
  font-family: var(--font-body);
}
.pricing-table th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
}
.pricing-table tr {
  border-bottom: 1px solid #eee9dd;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table td, .pricing-table th {
    padding: 12px 6px;
    font-size: 0.97rem;
  }
}
/*-------------------------------------*
    FOOTER
*-------------------------------------*/
footer {
  background: var(--color-primary);
  padding: 48px 0 20px 0;
  color: #FFFDF9;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 34px 0 rgba(173,124,77,0.12);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav,
.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.footer-nav a, .legal-nav a {
  color: #fff;
  font-family: var(--font-display);
  border-radius: 12px;
  padding: 4px 10px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .legal-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-accent2);
}
.footer-contact span { font-size: 1rem; color: #FFFDF9; }
.footer-contact a { color: #E6C9A8; text-decoration: underline; }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.footer-brand img {
  width: 40px;
}
.footer-brand span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #E6C9A8;
}
@media (max-width: 900px) {
  footer .container {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-brand { align-items: flex-start; }
}
/*-------------------------------------*
    COOKIE CONSENT BANNER & MODAL
*-------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FDF8F3;
  color: #232537;
  box-shadow: 0 -2px 18px rgba(173,124,77,0.11);
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 19001;
  animation: slideUp .35s cubic-bezier(.68,1.41,.24,.87);
  border-top: 3px solid var(--color-secondary);
}
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  background: var(--color-accent2);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 24px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 7px;
  transition: background 0.18s, color 0.14s, box-shadow .16s;
  box-shadow: 0 1px 7px 0 rgba(173,124,77,0.07);
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: var(--color-error);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.95;
  box-shadow: var(--shadow-glow);
  outline: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 18px 9px 15px 9px;
    font-size: 0.96rem;
  }
  .cookie-banner__buttons {
    gap: 8px;
  }
  .cookie-btn {
    font-size: 0.98rem;
    padding: 8px 14px;
    min-width: 120px;
  }
}
/* COOKIE MODAL DIALOG */
.cookie-modal {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%,-52%);
  min-width: 320px;
  max-width: 96vw;
  background: #ffffff;
  padding: 35px 30px 28px 30px;
  z-index: 20010;
  border-radius: 22px;
  box-shadow: 0 8px 38px 0 rgba(173,124,77,0.15), 0 0px 24px 0 rgba(35,37,55,0.08);
  animation: popIn .25s cubic-bezier(.48,1.34,.29,.77);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: var(--color-accent2);
  font-size: 1.30rem;
  margin: 0 0 6px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 9px 0;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-accent2);
  width: 20px;
  height: 20px;
}
.cookie-category .locked {
  font-size: 1.07rem;
  font-weight: 700;
  color: var(--color-accent2);
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 13px;
  background: var(--color-secondary);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: var(--color-accent2);
  font-size: 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  box-shadow: 0 2px 9px 0 rgba(230,201,168,0.11);
  transition: background 0.13s;
  z-index: 22;
}
.cookie-modal-close:active {
  background: var(--color-accent);
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 24px 6vw;
    font-size: 0.98rem;
  }
}
/*-------------------------------------*
    ANIMATIONS
*-------------------------------------*/
@keyframes swingIn {
  0% { transform: scale(0.82) rotate(-9deg); opacity: 0; }
  60% { transform: scale(1.07) rotate(3deg); opacity: .8; }
  to { transform: none; opacity: 1; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(36px); }
  70% { opacity: 0.4; }
  to { opacity: 1; transform: none; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-80px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: none; }
}
@keyframes popIn {
  0% { transform: scale(0.84) translate(-50%, -60%); opacity: 0; }
  80% { opacity: .75; }
  to { transform: scale(1) translate(-50%,-52%); opacity: 1; }
}
/*-------------------------------------*
   FUN/FESTIVE : PLAYFUL DESIGN EXTRAS
*-------------------------------------*/
h1, h2, h3 {
  text-shadow: 0 2px 2px #FFF3E0, 0 6px 12px rgba(173,124,77,0.07);
  letter-spacing: .54px;
}
h1:after {
  content: ' ✦';
  color: var(--color-secondary);
  font-size: 2.1rem;
  vertical-align: middle;
}
h2:after {
  content: '';
  display: inline-block;
  width: 0.7em;
  height: 0.09em;
  background: var(--color-accent2);
  margin-left: 8px;
  border-radius: 2px;
  vertical-align: super;
}
.feature-grid > div img, .service-list > div img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: #FFF9F1;
  box-shadow: 0 1px 4px rgba(230,201,168,0.09);
  animation: playfulPop 0.8s ease;
}
@keyframes playfulPop {
  0% { transform: scale(0.6) rotate(-15deg); opacity: .4; }
  80% { transform: scale(1.12) rotate(5deg); opacity: .95; }
  to { transform: none; opacity: 1; }
}
.feature-grid > div:hover img,
.service-list > div:hover img {
  transform: scale(1.15) rotate(11deg);
  transition: transform 0.17s;
}
/* Playful buttons borders */
.cta-btn, .cookie-btn {
  box-shadow:
    0 2px 12px 0 rgba(173,124,77,0.11),
    0 0px 0px 4px #FFF3E0 inset;
}
.cta-btn:hover, .cookie-btn:hover {
  box-shadow:
    0 5px 23px 0 rgba(230,201,168,0.19),
    0 0px 0px 3px var(--color-secondary) inset;
}
/*-------------------------------------*
    RESPONSIVE UTILITIES
*-------------------------------------*/
@media (max-width: 600px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.1rem; }
  .container { padding: 0 8px; }
}
@media (max-width: 450px) {
  .hero-section { padding: 21px 0 14px 0; border-radius: 0 0 10px 10px; }
  .footer-brand img { width: 27px; }
}
/*-------------------------------------*
    ADDITIONAL FLEXBOX REQS
*-------------------------------------*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/*-------------------------------------*
    FORMS (if any)
*-------------------------------------*/
input, textarea, select {
  font-family: var(--font-body);
  padding: 9px 12px;
  border: 1.5px solid var(--color-secondary);
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent2);
  outline: none;
}
/*-------------------------------------*
    MISC
*-------------------------------------*/
hr {
  border: none;
  border-bottom: 2px solid var(--color-accent2);
  margin: 26px 0;
}
::-webkit-scrollbar {
  width: 8px; background: #F1ECE5;
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent2);
}
/* Prevent text selection for buttons & links */
.cta-btn, .cookie-btn, .main-nav a, .mobile-nav a {
  user-select: none;
}
/*-------------------------------------*/
/* NO GRID, NO COLUMNS! FLEXBOX ONLY! */
/*-------------------------------------*/
