/* CSS RESET & BASE ======================================== */
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, 
main, 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;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F4;
  color: #374151;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F59E42;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #de7000;
}
ul, ol {
  list-style: none;
}
button, input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}
input[type="text"] {
  border: 2px solid #F59E42;
  padding: 10px 16px;
  border-radius: 32px;
  background: #fff;
  font-size: 16px;
  margin-bottom: 24px;
  transition: border .18s;
}
input[type="text"]:focus {
  border: 2px solid #374151;
}

/* BRAND FONTS ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  color: #1e2432;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  line-height: 1.25;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;  
  margin-bottom: 12px;
}
.section p, .content-wrapper p, .text-section p, .text-section li, li span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
p, li, dl, dt, dd {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* LAYOUT & CONTAINERS ===================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(55,65,81,0.07), 0 1.5px 10px rgba(245,158,66,0.06);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 9px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* MAIN NAV & HEADER ======================================= */
header {
  background: #fff; 
  box-shadow: 0 2px 16px rgba(55,65,81,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  position: relative;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  color: #374151;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 3px;
  transition: color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F59E42;
}
.cta-btn {
  background: #F59E42;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 100px;
  padding: 12px 32px;
  margin-left: 10px;
  box-shadow: 0 4px 16px rgba(245,158,66,0.13);
  transition: background .19s, box-shadow .32s, transform .16s;
  outline: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  border-bottom: 3px solid #37415120;
}
.cta-btn:hover, .cta-btn:focus {
  background: #de7000;
  box-shadow: 0 8px 32px rgba(245,158,66,0.19);
  transform: translateY(-2px) scale(1.04) rotate(-1.4deg);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  header .cta-btn {
    padding: 10px 20px;
    font-size: .97rem;
  }
}

/* MOBILE NAVIGATION ======================================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #F59E42;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  z-index: 1005;
}
@media (max-width: 900px) {
  .main-nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.48,.12,.34,1.55);
  pointer-events: none;
  opacity: 0.0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F59E42;
  color: #fff;
  border-radius: 100px;
  width: 44px;
  height: 44px;
  font-size: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1010;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #de7000;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
  gap: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e2432;
  padding: 16px 32px;
  border-radius: 100px;
  margin: 0 0 0 0;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F59E42;
  color: #fff;
}
@media (min-width: 900px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN SECTION STYLES ====================================== */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 0;
  border: none;
}
section .container {
  padding-top: 0;
  padding-bottom: 0;
}

.text-section, .text-image-section {
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(245,158,66,0.12);
  transition: box-shadow .19s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 48px rgba(245,158,66,0.22), 0 6px 18px rgba(55,65,81,0.10);
  transform: translateY(-2px) scale(1.04) rotate(0.6deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 24px 28px;
  gap: 16px;
}
@media (max-width: 600px) {
  .card-content {
    padding: 16px 10px 12px 10px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-grid > div {
  background: #fcf7ee;
  border: 1.2px dashed #F59E42;
  border-radius: 20px;
  padding: 26px 22px;
  min-width: 260px;
  flex: 1 1 260px;
  box-shadow: 0 4px 18px rgba(245,158,66,0.09);
  transition: box-shadow .16s, transform .13s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px rgba(55,65,81,.09),0 1.5px 10px rgba(245,158,66,0.16);
  transform: translateY(-2px) scale(1.025) rotate(-2deg);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    flex-wrap: wrap;
  }
  .feature-grid > div {
    min-width: 180px;
    padding: 20px 12px;
  }
}

/* TESTIMONIALS ============================================ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-left: 6px solid #F59E42;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(55,65,81,0.08);
}
.testimonial-card p {
  color: #111927;
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.testimonial-card span {
  color: #374151;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

/* BUTTONS & INTERACTIONS ================================== */
button, .cta-btn {
  cursor: pointer;
  outline: none;
  transition: background .20s, box-shadow .20s, transform .15s;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #F59E42;
  outline-offset: 3px;
}

/* FEATURE ITEM ============================================ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FOOTER ================================================== */
footer {
  background: #374151;
  color: #fff;
  font-size: .97rem;
  padding: 0;
  margin-top: 70px;
}
footer .container {
  padding: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  padding: 38px 0 22px 0;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F5F5F4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F59E42;
}
footer .text-section {
  flex: 1 1 240px;
}
.brand-tagline {
  flex-basis: 100%;
  text-align: center;
  margin-top: 18px;
  color: #F59E42;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    padding: 24px 0 6px 0;
  }
}

/* MISC CONTAINERS and COMMON BLOCKS ======================= */
ul, .section ul {
  list-style: none;
  padding: 0;
}
ul li, .section ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-family: 'Roboto', Arial, sans-serif;
}
ul li img {
  width: 32px;
  height: 32px;
}
dl {
  margin-bottom: 12px;
}
dt {
  font-weight: 700;
  color: #F59E42;
  margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
}
dd {
  margin-bottom: 10px;
  margin-left: 0px;
  color: #374151;
}

/* COOKIE CONSENT BANNER =================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9989;
  background: #fffbe7;
  box-shadow: 0 -6px 18px rgba(245,158,66,0.19),0 1.5px 10px rgba(55,65,81,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 28px;
  font-size: 1rem;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .33s cubic-bezier(.78,.11,.56,1.39), opacity .23s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-btn {
  margin-right: 12px;
  padding: 10px 24px;
  border-radius: 100px;
  background: #F59E42;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  outline: none;
  transition: background .17s, box-shadow .12s;
  box-shadow: 0 2px 8px rgba(245,158,66,.15);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #de7000;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #F59E42;
  border: 2px solid #F59E42;
  padding: 10px 20px;
  font-weight: 500;
  margin-right: 0;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #F59E42;
  color: #fff;
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 8px;
    font-size: 0.97rem;
  }
}

/* COOKIE MODAL ============================================ */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;height: 100vh;
  background: rgba(34,36,40,0.24);
  z-index: 9999;
  display: flex;align-items: center;justify-content: center;
  transition: opacity .23s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 2px 32px rgba(245,158,66,0.08);
  padding: 38px 30px 28px 30px;
  max-width: 410px;
  min-width: 260px;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #F59E42;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-toggle {
  width: 36px;
  height: 22px;
  border-radius: 16px;
  background: #F59E42;
  position: relative;
  transition: background .14s;
  display: inline-block;
  cursor: pointer;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-toggle .slider {
  position: absolute;
  left: 0; top: 0;
  right: 0; bottom: 0;
  border-radius: 16px;
  background: #F59E42;
}
.cookie-modal .cookie-toggle .knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .18s;
}
.cookie-modal .cookie-toggle input:checked + .slider .knob {
  left: 17px;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: #374151;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 21px;
  border-radius: 100px;
  background: #F59E42;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  outline: none;
  transition: background .16s;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #de7000;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  border: none;
  color: #374151;
  font-size: 1.77rem;
  font-family: inherit;
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  transition: color .13s;
  z-index: 1;
}
.cookie-modal .cookie-modal-close:hover {
  color: #F59E42;
}
@media (max-width: 620px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 20px 11px 14px 11px;
  }
}

/* CREATIVE & ARTISTIC ELEMENTS ============================ */
/* Accent color blocks, handdrawn border, vibrant contrasts */
.section {
  border: 2px solid #F59E42;
  position: relative;
  box-shadow: 0 6px 32px #f59e4212, 0 1.5px 10px #3741510d;
  /* Artistic effect by adding a wavy-doodle pseudo element */
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -18px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: url('../assets/deco/doodle-1.svg') no-repeat center/contain;
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  right: -18px;
  bottom: 10px;
  width: 45px;
  height: 45px;
  background: url('../assets/deco/squiggle-2.svg') no-repeat center/contain;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .section::before, .section::after {
    display: none;
  }
}
.feature-grid > div {
  /* Color splash effect border for artistry */
  border-left: 5px solid #F59E42;
  border-radius: 18px 4px 18px 18px;
  /* playful box shadow */
  box-shadow: 0 5px 20px #37415108;
  position: relative;
}
.feature-grid > div:after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 24px; height: 18px;
  background: url('../assets/deco/paint-splash.svg') no-repeat center/contain;
  opacity: 0.24;
  pointer-events: none;
}

/* ICONS + UNIQUE ELEMENTS ================================= */
ul li img, .text-section img {
  filter: drop-shadow(0 4px 12px #f59e4233) saturate(1.4);
}

/* RESPONSIVE LAYOUTS ====================================== */
@media (max-width: 800px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
    margin-bottom: 16px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.0rem; }
  .brand-tagline { font-size: .98rem; }
}

/* MICRO-INTERACTIONS & ARTISTIC HOVER EFFECTS ============ */
.cta-btn, .cookie-btn {
  box-shadow: 0 2px 8px #f59e4212;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #F59E42 90%, #ffe9d7 100%);
  background-size: 350% 100%;
  background-position: left;
}
.cta-btn:hover, .cta-btn:focus, .cookie-btn:hover, .cookie-btn:focus {
  background-size: 350% 100%;
  background-position: right;
  box-shadow: 0 6px 38px #f59e4231;
}

/* CARD BACKGROUND ARTSY BRUSH EFFECT ====================== */
.card::before {
  content: '';
  position: absolute;
  top: -24px; right: -18px;
  width: 48px; height: 38px;
  background: url('../assets/deco/brush-blue.svg') no-repeat center/contain;
  opacity: .12;
  pointer-events: none;
}
.card::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 12px;
  width: 32px; height: 18px;
  background: url('../assets/deco/brush-orange.svg') no-repeat center/contain;
  opacity: .18;
  pointer-events: none;
}
@media (max-width: 620px) {
  .card::before, .card::after { display:none; }
  .brand-tagline { font-size: .91rem; }
}

/* TEXT SCALE & HIERARCHY ================================== */
html {
  font-size: 16px;
}
@media (max-width: 450px){ html { font-size: 15px; } }

/* VISUAL HIERARCHY ======================================== */
.section > .container > .content-wrapper > h1, .section > .container > .content-wrapper > h2 {
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}
.section > .container > .content-wrapper > h1::after, .section > .container > .content-wrapper > h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  background: #F59E42;
  border-radius: 18px;
  margin-top: 12px;
  opacity: .14;
}

/* SPACINGS BETWEEN CARDS & ELEMENTS / NO OVERLAP ========== */
.card, .feature-grid > div, .testimonial-card {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* ARTISTIC DECORATIVE DIVIDERS ============================= */
hr {
  border: none;
  border-top: 3px dashed #F59E42;
  margin: 24px 0;
}

/* GENERAL ACCESSIBILITY + SELECTION ======================= */
::selection {
  background: #F59E42;
  color: #fffbe7;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px solid #374151;
  outline-offset: 3px;
}

/* FORMS (INPUTS) ========================================== */
input[type="text"] {
  font-size: 1rem;
  border-radius: 32px;
  border: 2.5px solid #F59E42;
  background: #fff;
  margin-bottom: 18px;
  transition: border .19s, box-shadow .16s;
  box-shadow: 0 2px 8px #f59e421a;
}
input[type="text"]:hover, input[type="text"]:focus {
  border: 2.5px solid #374151;
  box-shadow: 0 4px 18px #37415112;
}

/* HERO WELCOME/INTRO SPECIAL STYLE ========================= */
.section .cta-btn {
  margin-top: 10px;
  margin-bottom: 8px;
}

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