/* RESET & ROOTS */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #F5F3F0;
  color: #2C2F36;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
:root {
  --color-primary: #2C2F36;
  --color-secondary: #F5F3F0;
  --color-accent: #D7A95B;
  --color-contrast: #fff;
  --color-dark: #252730;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --shadow-card: 0 6px 24px 0 rgba(44, 47, 54, 0.10), 0 1.5px 4px 0 rgba(44,47,54,0.05);
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* HEADER */
header {
  background: var(--color-secondary);
  box-shadow: 0 3px 12px 0 rgba(44,47,54,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  position: relative;
  transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  width: 0;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
  margin-top: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-secondary);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(215,169,91,0.13);
  border: none;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color 0.18s cubic-bezier(.4,0,.2,1), transform 0.15s cubic-bezier(.4,0,.2,1), box-shadow 0.23s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover, .btn-primary:focus {
  background: #B08738;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(44,47,54,0.17);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 32px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.18s;
  z-index: 105;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-contrast);
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(44,47,54,.94);
  z-index: 110;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.67,.15,.49,1.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 auto;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 38px;
  cursor: pointer;
  z-index: 120;
  transition: color .18s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 36px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 4px 2px;
  transition: background .16s, color .16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent);
  background: rgba(255,255,255,0.09);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    font-size: 16px;
    padding: 10px 18px;
  }
  header .container {
    height: 64px;
    gap: 0;
  }
}

/* HERO SECTIONS */
.hero-section {
  background: linear-gradient(105deg, #E9E8F6 0%, #F5F3F0 76%);
  min-height: 350px;
  color: var(--color-primary);
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
  display: flex;
}
.hero-section .container {
  min-height: 300px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  max-width: 830px;
}
.hero-section h1 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px #f5f3f080;
}
.hero-section p {
  font-size: 20px;
  color: #2C2F36;
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 95%;
}

/* SECTION SPACING MANDATORY RULES */
.section, main > section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
  background: none;
  border-radius: var(--radius-lg);
  position: relative;
}
main > section:last-child {
  margin-bottom: 0 !important;
}

/* FEATURES GRID (FLEX) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex-direction: row;
  margin-top: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 22px 26px 22px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, transform .18s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 38px 0 rgba(44,47,54,0.13);
  transform: translateY(-6px) scale(1.032);
}
.features-grid img {
  height: 56px;
  margin-bottom: 8px;
}
.features-grid h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 2px 0;
  letter-spacing: 0.01em;
}
.features-grid p {
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.56;
}

/* CARDS + CARD-CONTAINER */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .16s, transform .14s;
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(44,47,54,0.24);
  transform: translateY(-2px) scale(1.02);
}

/* TEXT-IMAGE-SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.text-image-section > * {
  flex: 1 1 320px;
}

/* TESTIMONIALS */
.testimonials {
  background: #F6F9FC;
  padding: 60px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 1.5px 17px 0 rgba(44,47,54,0.04);
  margin-bottom: 60px;
}
.testimonials h2 {
  margin-bottom: 38px;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-accent);
  letter-spacing: 0.01em;
  text-align: left;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px 0 rgba(44,47,54,0.14);
  padding: 20px 32px;
  margin-bottom: 20px;
  max-width: 600px;
  border-left: 6px solid var(--color-accent);
  font-family: var(--font-body);
  color: #181A1C;
  font-size: 18px;
  transition: box-shadow .14s, border-color .18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px 0 rgba(215,169,91,0.07);
  border-left: 6px solid #2C2F36;
}
.testimonial-card p {
  color: #232528;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: 16px;
  color: #574F39;
}
.testimonial-card span:last-child {
  color: var(--color-accent);
  font-size: 18px;
}

/* CTA SECTIONS */
.cta-section {
  background: var(--color-accent);
  color: var(--color-contrast);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px 0 rgba(215,169,91,0.08);
  padding: 42px 24px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.cta-section h2, .cta-section h1 {
  color: #fff;
  font-family: var(--font-display);
}
.cta-section a.btn-primary {
  background: #fff;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 3px 16px 0 rgba(255,255,255,0.12);
  margin-top: 24px;
}
.cta-section a.btn-primary:hover {
  color: #fff;
  background: #B08738;
}
.cta-section p {
  color: #fff;
  font-size: 20px;
}

/* TEXT SECTIONS */
.text-section {
  margin-top: 18px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 17px;
  color: var(--color-primary);
  font-family: var(--font-body);
}
.text-section h3 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 22px;
  margin-bottom: 6px;
}
.text-section ul {
  margin-left: 20px;
  list-style: disc;
  color: #695d43;
}
.text-section li {
  margin-bottom: 10px;
  font-size: 16px;
}
.text-section a {
  color: var(--color-accent);
  border-bottom: 1px dotted var(--color-accent);
}
.text-section a:hover {
  color: #fff;
  background: var(--color-accent);
  border-bottom: none;
  padding: 1px 4px;
  border-radius: var(--radius-sm);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px 24px 18px 28px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .13s;
}
.faq-accordion > div:hover {
  box-shadow: 0 10px 36px 0 rgba(215,169,91,0.13);
  transform: translateY(-4px) scale(1.01);
}
.faq-accordion h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 18px;
}
.faq-accordion p {
  font-size: 16px;
  color: var(--color-dark);
}


/* FOOTER */
footer {
  background: #2C2F36;
  color: #fff;
  padding: 44px 0 16px 0;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  margin-top: 80px;
  font-family: var(--font-body);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  padding-bottom: 0;
  justify-content: space-between;
}
footer img {
  width: 56px;
  margin-right: 24px;
  margin-bottom: 0;
}
footer nav.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 16px;
}
footer nav.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
footer nav.footer-nav a:hover, footer nav.footer-nav a:focus {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
  color: #eee6cc;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-copyright {
  margin-top: 30px;
  color: #d0c39e;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-weight: 400;
  width: 100%;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8ec;
  color: #2C2F36;
  box-shadow: 0 -2px 21px 0 rgba(44,47,54,.10);
  padding: 27px 19px 19px 19px;
  font-size: 16px;
  font-family: var(--font-body);
  z-index: 300;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  gap: 20px;
  transition: transform .37s cubic-bezier(.55,0,.6,1.10);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 auto;
}
.cookie-banner button {
  margin-top: 5px;
  margin-right: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .cookie-accept {
  background: var(--color-accent);
  color: #fff;
  padding: 8px 22px;
  margin-right: 8px;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #B08738;
}
.cookie-banner .cookie-reject {
  background: #ebebeb;
  color: var(--color-primary);
  padding: 8px 16px;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #e2d6be;
  color: #8f6f27;
}
.cookie-banner .cookie-settings {
  background: none;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 8px 16px;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--color-accent);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 350;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,47,54, 0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .35s;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  padding: 48px 30px 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 7px 36px 0 rgba(44,47,54,0.23);
  min-width: 320px;
  max-width: 95vw;
  font-family: var(--font-body);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal li {
  font-size: 16px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary)
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
}
.cookie-modal .modal-actions {
  margin-top: 13px;
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 29px;
  font-family: var(--font-display);
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .modal-accept {
  padding: 10px 25px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .modal-accept:hover {
  background: #B08738;
}
.cookie-modal .modal-reject {
  background: none;
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
.cookie-modal .modal-reject:hover {
  background: #e8daaf;
}

/* TYPOGRAPHY */
h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 18px;
}
h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 14px;
}
h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
}
p, ul, li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  font-weight: 400;
}
strong {
  font-weight: 700;
}

/* Artistic/Creative Touches */
h1, h2, h3 {
  letter-spacing: 0.008em;
  text-shadow: 0 1.5px 8px #dfd0ac22;
}
section {
  position: relative;
  overflow: visible;
}
.features-grid > div::before, .card::before {
  content: '';
  position: absolute;
  left: -24px; top: -18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(215,169,91,0.09);
  z-index: 0;
  pointer-events: none;
}
.features-grid > div:nth-child(even)::before, .card:nth-child(even)::before {
  left: auto;
  right: -24px;
  background: rgba(44,47,54,0.07);
}
.features-grid > div, .card {
  z-index: 2;
}

/* Content Grids */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feature Item (vertical flex) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Margin/gap for all non-grid cards */
main > section > .container > .content-wrapper > *:not(:first-child) {
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    gap: 20px;
  }
  .hero-section h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    display: none !important;
  }
  .content-wrapper {
    padding: 0;
  }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div {
    min-width: 0;
    width: 100%;
  }
  .section, main > section {
    margin-bottom: 36px !important;
    padding: 24px 8px !important;
    border-radius: var(--radius-md);
  }
  .hero-section h1 {
    font-size: 30px;
  }
  .hero-section p, .cta-section p, .cta-section a.btn-primary {
    font-size: 18px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 18px 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-copyright {
    margin-top: 16px;
    text-align: left;
    font-size: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .mobile-menu {
    padding-top: 8px;
  }
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 8px;
    border-radius: var(--radius-md);
  }
  .faq-accordion > div {
    padding: 20px 12px 12px 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 7px 14px 7px;
  }
  .cookie-modal {
    padding: 20px 11px 17px 11px;
    border-radius: var(--radius-md);
    min-width: 88vw;
  }
}

/* Scrollbar styling for artistic vibe */
body::-webkit-scrollbar {
  width: 15px;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: #eee7dc;
}

/* Selection color */
::selection {
  background: var(--color-accent);
  color: #fff;
}

/* Miscellaneous Artistic Details */
section {
  box-shadow: 0 3px 16px 0 rgba(44,47,54,0.05);
}
h1, h2, h3, .btn-primary {
  font-feature-settings: 'ss01' on, 'ss03' on;
}

/* Accessibility improvements for keyboard focus */
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1.5px;
}

/* Animations */
.card, .features-grid > div, .testimonial-card, .faq-accordion > div {
  transition: box-shadow .18s, transform .16s;
}

/* Remove tap highlight on buttons/links for mobile feel */
button, .btn-primary, a {
  -webkit-tap-highlight-color: transparent;
}

/* END CSS */
