/* ========================== 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F3EFEC;
  color: #233146;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #233146;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B89DC9;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 600;
}

/* ========================== FONT FACE ========================== */
@import url('https://fonts.googleapis.com/css?family=Vollkorn:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ========================== COLORS ========================== */
:root {
  --color-primary: #233146;
  --color-secondary: #B89DC9;
  --color-accent: #F3EFEC;
  --color-gold: #C5A058;
  --color-off-white: #FAF9F7;
  --color-dark: #182030;
  --color-error: #b01a3b;
  --color-success: #338833;
  --shadow: 0 8px 24px rgba(35,49,70,0.06), 0 1.5px 3px rgba(35,49,70,0.09);
  --radius-base: 16px;
  --radius-button: 28px;
}

/* ========================== LUXURY/PREMIUM THEME ========================== */
h1, h2, h3, h4, .display, .hero h1 {
  font-family: 'Vollkorn', serif;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2rem;
  }
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-base);
}

/* ========================== CONTAINER & LAYOUT ========================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* ========================== HEADER ========================== */
header {
  background: var(--color-off-white);
  box-shadow: 0 2px 20px rgba(35,49,70,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.cta-primary {
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: 'Vollkorn', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: var(--radius-button);
  box-shadow: 0 1.5px 10px rgba(197,160,88,0.07);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(255,255,255,0.21);
  margin-left: 14px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: #fff6da;
  box-shadow: 0 2px 24px rgba(35,49,70,0.18);
  text-shadow: none;
}
.cta-secondary {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-family: 'Vollkorn', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.17s;
  text-shadow: none;
  margin-left: 0;
  margin-top: 16px;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.logo {
  display: flex;
  align-items: center;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 10px;
}

/* ========================== MOBILE NAVIGATION ========================== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.8rem;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(35,49,70,0.11);
  transition: background 0.17s, color 0.17s;
  z-index: 1110;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,49,70,0.97);
  backdrop-filter: blur(7px);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.6, .2, .25, 1);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 32px 18px 0;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin-top: 36px;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff6da;
  font-size: 1.35rem;
  font-family: 'Vollkorn', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.17s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
@media (min-width: 992px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .cta-primary {
    font-size: 0.98rem;
    padding: 9px 20px;
    margin-left: 0;
  }
  header .container {
    gap: 4px;
  }
}

/* ========================== HERO ========================== */
.hero {
  background: linear-gradient(135deg, #F3EFEC 72%, #fffbe9 100%);
  border-bottom: 1px solid #e7e2d3;
  padding: 0;
  margin-bottom: 38px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.0rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.hero p {
  color: var(--color-dark);
  font-size: 1.08rem;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .hero .container {
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}

/* ========================== FEATURES STYLE ========================== */
.features, .feature-grid, .feature-list {
  background: none;
  box-shadow: none;
  border: none;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35,49,70,0.07);
  border-left: 4px solid var(--color-gold);
  gap: 15px;
  min-width: 250px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature-item h3 {
  font-size: 1.19rem;
  color: var(--color-primary);
  font-family: 'Vollkorn', serif;
  margin-bottom: 0;
  font-weight: 600;
}
.feature-item p {
  color: var(--color-dark);
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px rgba(35,49,70,0.14);
  transform: translateY(-1px) scale(1.02);
  border-left-color: #D7B060;
}

@media (max-width: 767px) {
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}

/* Benefit-Icons alignment in partnerschaft-kompatibilitaet */
.benefit-icons {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 12px;
}
.benefit-icons img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 1.5px 2.4px rgba(197,160,88,0.06));
}
.calendar-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

/* ========================== CARD & FLEX LAYOUT ALIGNMENTS ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 28px rgba(35,49,70,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px rgba(35,49,70,0.12);
  transform: translateY(-2px);
}
.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,
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ========================== TESTIMONIALS ========================== */
.testimonials, .testimonial-slider {
  background: transparent;
  box-shadow: none;
  border: none;
  margin-bottom: 36px;
}
.testimonials h2 {
  margin-bottom: 16px;
  color: var(--color-dark);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 24px 28px 18px 28px;
  border-radius: 20px;
  border-left: 5px solid var(--color-gold);
  box-shadow: 0 7px 24px rgba(35,49,70,0.08);
  min-width: 250px;
  max-width: 440px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  position: relative;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card p {
  color: var(--color-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-size: 0.94rem;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 8px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 14px 40px rgba(35,49,70,0.16);
  transform: scale(1.03);
  border-left-color: #D7B060;
}
/* Ensure readable text (dark on light) */
.testimonials, .testimonial-card {
  background: #fff;
  color: var(--color-dark);
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: var(--color-gold);
  margin-top: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.star-rating img {
  width: 20px;
  height: 20px;
  margin-right: -2px;
}

/* ========================== SERVICES & LISTS ========================== */
.services .service-list, .services .service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(35,49,70,0.06);
  border-left: 3.5px solid var(--color-gold);
  padding: 24px 20px;
  min-width: 230px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.service-item h3 {
  font-family: 'Vollkorn', serif;
  font-size: 1.08rem;
  color: var(--color-primary);
}
.service-item p {
  color: var(--color-dark);
  font-size: 1rem;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 7px 32px rgba(35,49,70,0.12);
  transform: translateY(-1px) scale(1.015);
  border-left-color: #D7B060;
}
@media (max-width: 768px) {
  .service-list, .service-items {
    flex-direction: column;
    gap: 14px;
  }
  .service-item {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
}

/* ========================== CONTACT SECTIONS ========================== */
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(104deg, #f8f7f4 85%, #fffbe9 100%);
  border-radius: var(--radius-base);
}
.contact h2 {
  font-size: 1.22rem;
  margin-bottom: 18px;
  color: var(--color-primary);
}
.contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.contact a {
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.15s;
}
.contact a:hover, .contact a:focus {
  color: var(--color-secondary);
}

/* ========================== LEGAL (STATIC) PAGES ========================== */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 4px 24px rgba(35,49,70,0.07);
}
.legal h1, .legal h2 {
  color: var(--color-primary);
}
.legal ul, .legal ol {
  margin-bottom: 14px;
}
.legal a {
  color: var(--color-gold);
  transition: color 0.16s;
}
.legal a:hover {
  color: var(--color-secondary);
}

/* ========================== FOOTER ========================== */
footer {
  background: var(--color-primary);
  padding: 36px 0 20px 0;
  color: #fff;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-menu {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fffbe9;
  font-family: 'Vollkorn', serif;
  font-weight: 500;
  font-size: 1.04rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.impressum {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: #f6e4cd;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  margin-top: 5px;
}
.impressum img {
  width: 28px;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #fffbe8;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  justify-content: center;
  transition: box-shadow 0.16s, background 0.14s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--color-gold);
  box-shadow: 0 2px 12px rgba(197,160,88,0.21);
}
.social-links img {
  width: 18px;
  height: 18px;
}

/* ========================== MAIN CONFIRMATION/THANK YOU ========================== */
.confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 4px 24px rgba(35,49,70,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation h1 {
  color: var(--color-primary);
  margin-bottom: 12px;
}
.confirmation ul {
  margin-bottom: 16px;
}
.confirmation a {
  margin-top: 15px;
}
.confirmation p {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .confirmation {
    padding: 22px 8px;
  }
}

/* ========================== COOKIE CONSENT BANNER ========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe8;
  box-shadow: 0 -4px 18px rgba(35,49,70,0.13);
  border-top: 2.5px solid var(--color-gold);
  padding: 22px 20px 22px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1700;
  font-size: 1rem;
  color: var(--color-dark);
  animation: fadeInUp 0.44s ease;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 26px;
  border-radius: var(--radius-button);
  font-size: 1rem;
  font-family: 'Vollkorn', serif;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-primary);
  color: #fffbe8;
}
.cookie-btn.reject {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #faefe2;
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-primary);
  border: none;
  text-decoration: underline;
  font-size: 0.97rem;
  font-weight: 500;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: var(--color-gold);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 18px 10px;
    gap: 15px;
    font-size: 0.96rem;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Cookie Modal Popup ---- */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(35,49,70,0.58);
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.37s cubic-bezier(.53,.02,.3,1.01);
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #fffbe8;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(197,160,88,0.12);
  padding: 38px 26px 26px 26px;
  min-width: 320px;
  max-width: 96vw;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  font-family: 'Vollkorn', serif;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
}
.toggle-switch {
  width: 44px;
  height: 24px;
  position: relative;
  display: inline-block;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #e6ddc7;
  border-radius: 14px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.17s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-gold);
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.17s;
  box-shadow: 0 1px 4px rgba(197,160,88,0.11);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}
.toggle-slider {
  box-shadow: 0 1px 2px rgba(33,33,33,0.05);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal .info {
  font-size: 0.96rem;
  color: #7e6d57;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.91); }
  to { opacity: 1; transform: scale(1); }
}

/* ========================== RESPONSIVE LAYOUT ========================== */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  footer .container {
    padding: 0 12px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .section, .contact, .legal {
    padding: 18px 6px;
    margin-bottom: 40px;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .confirmation {
    padding: 16px 2px;
  }
  .feature-item,
  .service-item,
  .testimonial-card {
    padding: 15px 9px;
  }
}

/* ========================== UTILITY ========================== */
.hide {
  display: none !important;
}
[hidden] {
  display: none !important;
}
@media (max-width: 480px) {
  .footer-menu {
    gap: 13px;
    font-size: 0.95rem;
  }
}

/* ========================== FORM ELEMENTS ========================== */
input[type="text"], input[type="email"], input[type="date"], input[type="number"], select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #ded4c2;
  border-radius: 8px;
  background: #fffbe8;
  color: var(--color-primary);
  margin-bottom: 18px;
  width: 100%;
  outline: none;
  transition: border 0.17s, box-shadow 0.16s;
  box-shadow: 0 1px 2px rgba(35,49,70,0.06);
}
input[type="text"]:focus, input[type="email"]:focus, input[type="date"]:focus, input[type="number"]:focus, select:focus, textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 2px 8px rgba(197,160,88,0.13);
}
label {
  display: block;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 5px;
}

/* ========================== ANIMATIONS & INTERACTIVITY ========================== */
button, .cta-primary, .cta-secondary, .cookie-btn {
  transition: box-shadow 0.15s, background 0.17s, color 0.17s, border 0.17s;
}
button:active, .cta-primary:active, .cta-secondary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* ========================== SCROLLBAR (DECENT) ========================== */
::-webkit-scrollbar {
  width: 9px;
  background: #f3efec;
}
::-webkit-scrollbar-thumb {
  background: #ddd1c2;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #cbbda7;
}
section {
  padding: 20px 0;
}
/* ========================== END OF CSS ========================== */
