/* CSS RESET & NORMALIZATION */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F6F3EF;
  color: #3d3129;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #1C2541;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AF8347;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
hr {
  border: none;
  border-top: 1px solid #D8CFC4;
  margin: 24px 0;
}

/* CUSTOM FONTS WITH RETRO FLAVOR */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Roboto:wght@400;500&display=swap');

:root {
  --primary: #1C2541;
  --secondary: #F9F7F7;
  --vintage-bg: #FFF8E7;
  --accent: #AF8347;
  --retro-red: #B23C2D;
  --retro-blue: #3A506B;
  --retro-olive: #81916D;
  --retro-shadow: rgba(60,38,13,0.10);
  --vintage-border: #E0C19D;
  --retro-green: #4D6654;

  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
}

/* LAYOUT WRAPPERS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-bg);
  border-radius: 14px;
  box-shadow: 0 6px 24px var(--retro-shadow);
  border: 1.5px solid var(--vintage-border);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 3px 14px var(--retro-shadow);
  z-index: 9;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
header img {
  height: 44px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #FFF8E7;
  font-family: var(--font-display);
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  padding: 2px 2px;
  transition: color 0.16s, text-shadow 0.22s;
  text-shadow: 0 1px 0 #00000033;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
  text-shadow: 0 2px 8px #AF8347;
}
.cta-button {
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: var(--accent);
  color: #fff;
  padding: 12px 36px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 3px 0 var(--retro-shadow);
  letter-spacing: 0.05em;
  margin-left: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--retro-red);
  color: #fff4e3;
  box-shadow: 0 8px 36px var(--retro-shadow);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 101;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 2.2rem;
  display: none;
  transition: background 0.2s;
  box-shadow: 0 4px 12px var(--retro-shadow);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-red);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF8E7;
  box-shadow: 0 0 180px 60px rgba(60,38,13,0.11);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.86,-0.11,.57,1.26);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--retro-red);
  border: none;
  font-size: 2.4rem;
  padding: 18px 28px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
  width: 100%;
  margin: 32px 0 0 34px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.31rem;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: none;
  border: none;
  padding: 12px 0;
  border-radius: 5px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #FFF8E7;
}

/* HERO SECTIONS */
.hero, .about-hero, .hero-thankyou {
  background: repeating-linear-gradient(135deg, #F9F7F7, #F9F7F7 20px, #EAD8B2 22px, #FFF8E7 36px), var(--vintage-bg);
  border-bottom: 2px solid var(--vintage-border);
  box-shadow: 0 4px 32px var(--retro-shadow);
  padding: 64px 0 48px 0;
}
.hero-thankyou {
  background: repeating-linear-gradient(-45deg, #F9F7F7 0 30px, #EDD297 30px 38px, #F9F7F7 38px 68px);
}
.hero .container, .about-hero .container, .hero-thankyou .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1, .about-hero h1, .hero-thankyou h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-shadow: 1.5px 2.5px 0 #ede2ce;
}
.hero .subtitle, .about-hero .subtitle, .hero-thankyou .subtitle {
  font-family: var(--font-body);
  font-size: 1.21rem;
  color: #573c1c;
  margin-top: 10px;
  margin-bottom: 18px;
  max-width: 600px;
}

/* FEATURES & CARD GRID */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature-list li {
  background: #fffdfa;
  border: 1px solid var(--vintage-border);
  border-radius: 14px;
  box-shadow: 0 4px 18px var(--retro-shadow);
  padding: 28px 22px 20px 22px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
}
.feature-list li img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: sepia(0.25) contrast(1.15) brightness(0.95) drop-shadow(0 2px 4px #dbccb5);
}
.feature-list li h3 {
  font-family: var(--font-display);
  font-size: 1.21rem;
  color: var(--retro-blue);
  margin-bottom: 4px;
  text-shadow: 1px 1.5px #fff8e7bb;
}
.feature-list li p, .feature-list li strong {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: #494038;
  line-height: 1.5;
}
.feature-list li strong {
  color: var(--retro-red);
  display: inline-block;
  margin-bottom: 3px;
}
.feature-list li:hover, .feature-list li:focus-within {
  box-shadow: 0 12px 40px var(--retro-shadow);
  transform: translateY(-2px) scale(1.019) rotate(-1deg);
  z-index: 1;
  border-color: var(--accent);
  background: #fbecc7;
}

/* TEXT IMAGE SECTION, TESTIMONIALS, ETC. */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  margin-bottom: 32px;
  padding: 20px 0 0 0;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5b4324;
  font-size: 1rem;
}
.text-section strong {
  color: var(--retro-red);
  font-size: 1rem;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--secondary);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 12px;
}
.testimonials > .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--retro-blue);
  text-align: left;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffdfa;
  border: 1.5px solid var(--vintage-border);
  border-radius: 13px;
  box-shadow: 0 4px 24px var(--retro-shadow);
  margin-bottom: 20px;
  max-width: 720px;
  width: 100%;
  transition: box-shadow 0.22s, transform 0.16s;
}
.testimonial-card p {
  font-family: var(--font-body);
  color: #1d170c;
  font-size: 1.04rem;
  flex: 2;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-card strong {
  font-family: var(--font-display);
  color: var(--retro-green);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  flex: none;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 16px 48px var(--retro-shadow);
  transform: translateY(-1.5px) scale(1.02);
  border-color: var(--retro-green);
}

/* CARDS & CONTENT GRIDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdfa;
  border-radius: 16px;
  box-shadow: 0 5px 20px var(--retro-shadow);
  border: 1.2px solid var(--vintage-border);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 11px 42px var(--retro-shadow);
  transform: translateY(-1.8px) scale(1.017) rotate(-2deg);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdfa;
  padding: 12px 16px;
  border-radius: 7px;
  border-left: 6px solid var(--accent);
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.5rem; margin-bottom: 7px; }
h3 { font-size: 1.19rem; }
h4, h5, h6 {font-size: 1rem;}

/* SPACING DEFAULTS */
p {
  color: #5b4324;
  font-size: 1.09rem;
  margin-bottom: 10px;
}
.section p, .card p, .testimonial-card p, .feature-list li p, .text-section li, .text-section p {
  margin-bottom: 6px;
}

/* BUTTON STYLES */
button, .cta-button {
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
  font-size: 1rem;
  margin-top: 7px;
  transition: background 0.16s, transform 0.16s, box-shadow 0.14s;
}
button:hover, button:focus, .cta-button:hover, .cta-button:focus {
  background: var(--retro-red);
  color: #FFF8E7;
  transform: translateY(-2.5px) scale(1.04) rotate(-1deg);
  box-shadow: 0 5px 28px var(--retro-shadow);
}

/* LINK LISTS IN FOOTER & NAV */
footer nav {
  font-family: var(--font-display);
  color: var(--primary);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--primary);
  font-size: 1rem;
  opacity: 0.84;
  padding: 2px 3px;
  border-radius: 6px;
  transition: background 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--vintage-border);
  color: var(--retro-red);
}

footer address {
  font-family: var(--font-body);
  color: #7f693c;
  font-size: 0.97rem;
  margin-bottom: 8px;
  text-align: center;
}
footer p {
  font-size: 0.95rem;
  color: #998879;
  text-align: center;
}
footer {
  background: #FFF8E7;
  border-top: 2px solid var(--vintage-border);
  margin-top: 36px;
  padding: 32px 0 8px 0;
}

/* RESPONSIVE: MOBILE-FIRST */
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 9px 14px;
  }
  header nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
    margin-top: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero, .about-hero, .hero-thankyou {
    padding: 44px 0 28px 0;
  }
  h1 { font-size: 1.62rem; }
  h2 { font-size: 1.12rem; }
  .feature-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-list li {
    max-width: 100%;
    min-width: 100%;
  }
  .testimonials > .container {
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
    padding: 13px 9px;
  }
  .section, .features, .testimonials {
    margin-bottom: 40px;
    padding: 25px 8px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  z-index: 10000;
  background: #FFF8E7;
  color: #1C2541;
  border-top: 2.5px solid var(--vintage-border);
  box-shadow: 0 -10px 28px var(--retro-shadow);
  padding: 22px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookieBannerIn 0.8s ease-in;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #4b3a1d;
  font-size: 1.03rem;
  font-family: var(--font-body);
  margin: 0;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-btns button {
  font-family: var(--font-display);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 9px 22px;
  font-size: 1rem;
  transition: background 0.16s, transform 0.14s;
  margin: 0;
}
.cookie-btns .cookie-accept {
  background: var(--retro-green);
}
.cookie-btns .cookie-reject {
  background: var(--retro-red);
}
.cookie-btns .cookie-settings {
  background: var(--retro-blue);
}
.cookie-btns button:hover, .cookie-btns button:focus {
  filter: brightness(1.11);
  transform: scale(1.04);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 20000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(60,38,13,0.14);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModalBg 0.32s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF8E7;
  border: 2.4px solid var(--vintage-border);
  border-radius: 14px;
  box-shadow: 0 28px 90px var(--retro-shadow);
  max-width: 390px;
  width: 89vw;
  padding: 24px 25px 18px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalIn 0.3s cubic-bezier(.53,1.43,.47,-0.42);
}
@keyframes modalIn {
  from { transform: translateY(55px) scale(0.98); opacity: 0.4; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffdfa;
  border: 1.2px solid var(--vintage-border);
  border-radius: 9px;
  padding: 10px 18px;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #4b3a1d;
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-modal-actions button {
  background: var(--accent);
  color: #fff;
  border-radius: 17px;
  padding: 8px 18px;
  font-size: 1rem;
  transition: background 0.13s, transform 0.13s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--retro-red);
  color: #fff;
}

/* VINTAGE RETRO STYLINGS / NOSTALGIC TOUCHES */
.section {
  box-shadow: 0 2px 12px var(--retro-shadow);
  background: repeating-linear-gradient(135deg,#FFF8E7 0 12px,#F9F7F7 12px 22px);
  border: 1.5px solid var(--vintage-border);
  border-radius: 14px;
}
hr {
  border-top: 2px dotted #EAD8B2;
}

/* SCROLLBAR (RETRO THEME) */
::-webkit-scrollbar {
  width: 12px;
  background: #fff8e7;
}
::-webkit-scrollbar-thumb {
  background: #E0C19D;
  border-radius: 7px;
  border-left: 3px solid #fff8e7;
}

/* SELECTION RETRO COLOR */
::selection {
  background: #AF8347;
  color: #FFF8E7;
}

/* FOCUS STATES */
a:focus, button:focus, .cta-button:focus, input:focus, .feature-list li:focus-within {
  outline: 2px dashed var(--retro-red);
  outline-offset: 2px;
}

/* DARK TEXTS ON LIGHT BG: TESTIMONIALS */
.testimonial-card, .feature-list li, .card, .section, .cookie-modal, .cookie-banner {
  color: #192323;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .feature-list li, .testimonial-card {
  transition: box-shadow 0.20s, transform 0.21s, border 0.15s, background 0.15s;
}

/* Hide visually, but keep for accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ==== END OF CSS ==== */
