/* -------------------
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #FFF8F1;
  color: #292134;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, picture {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* ----------------
   BRAND VARIABLES
----------------- */
:root {
  --color-primary: #8B2E43;
  --color-accent: #AD8127;
  --color-secondary: #FFF8F1;
  --color-white: #ffffff;
  --color-dark: #292134;
  --color-card-bg: #ffffff;
  --color-muted: #f6e6c7;
  --color-fun1: #ffe06e;
  --color-fun2: #7cf6d6;
  --color-fun3: #ff8ba7;
  --shadow-s: 0 2px 8px 0 rgba(139, 46, 67, 0.08);
  --shadow-m: 0 8px 24px 0 rgba(139, 46, 67, 0.14);
  --radius-s: 12px;
  --radius-m: 22px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* Optional fallback for custom properties */
body {
  background: var(--color-secondary, #FFF8F1);
}


/*
-------------------
TYPOGRAPHY
-------------------
*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}

p, ul, ol, li, span {
  font-family: var(--font-body, 'Lato', Arial, sans-serif);
  color: var(--color-dark);
  font-size: 1rem;
}
.subtitle {
  font-family: var(--font-body, 'Lato', Arial, sans-serif);
  font-size: 1.2rem;
  color: #47243A;
  margin-bottom: 12px;
}

strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* Fun/Playful heading shake animation */
@keyframes pop-twist {
  10% {
    transform: rotate(-2deg) scale(1.05) skewY(-1deg);
    color: var(--color-fun1);
  }
  40% {
    transform: rotate(2.5deg) scale(1.09) skewY(2deg);
    color: var(--color-primary);
  }
  100% {
    transform: none;
    color: var(--color-primary);
  }
}
.hero h1, .confirmation h1 {
  animation: pop-twist 1.3s cubic-bezier(.7,1.2,.58,1.01) 0.3s 1;
}

/*
--------------------
LAYOUT/CONTAINER
--------------------
*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

main > section:not(:last-child) {
  margin-bottom: 60px;
}

/*
--------------------
HEADER & NAVIGATION
--------------------
*/
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 1px 16px 0 rgba(139,46,67,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .25s;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 80px;
}
header img {
  height: 48px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.17s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-fun1);
  color: var(--color-dark);
}

.btn.primary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 11px 29px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 24px;
  font-weight: bold;
  box-shadow: 0 4px 18px 0 rgba(139,46,67,.12);
  letter-spacing: .01em;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.23s, color .18s, transform .12s;
  position: relative;
  z-index: 1;
}
.btn.primary:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--color-fun3);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: -1;
  transition: opacity .19s, transform .25s;
}
.btn.primary:hover:after,
.btn.primary:focus:after {
  opacity: .12;
  transform: translate(-50%, -50%) scale(1.05);
}
.btn.primary:hover, .btn.primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/****** Fun hover/jiggle on main CTAs ******/
.btn.primary {
  animation: btn-bouncyin .48s ease .55s 1;
}
@keyframes btn-bouncyin {
  0% { transform: scale(.5); opacity: 0; }
  55% { transform: scale(1.18); opacity: 1; }
  85% { transform: scale(.95); }
  100% { transform: scale(1); }
}
/*******
  Hamburger Menu Button
*******/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--color-fun1);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  margin-left: 10px;
  z-index: 55;
  box-shadow: 0 2px 10px 0 rgba(173,129,39,0.13);
  transition: box-shadow .17s, background .17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-fun3);
  color: var(--color-dark);
  box-shadow: 0 4px 18px 0 rgba(173,129,39,.19);
}

/* Hide burger by default on desktop */
.mobile-menu-toggle {
  display: none;
}

/*******
   MOBILE MENU
*******/
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(139,46,67,.14);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.86,0,.07,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 26px 26px 0 0;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .16s, color .16s;
  box-shadow: 0 2px 10px 0 rgba(173,129,39,0.13);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun3);
  color: var(--color-dark);
}
.mobile-nav {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  background: var(--color-white);
  border-radius: 15px;
  padding: 11px 22px;
  margin-bottom: 4px;
  margin-top: 4px;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(139,46,67,.08);
  transition: background .18s, color .18s, box-shadow .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun1);
  color: var(--color-dark);
  box-shadow: 0 4px 18px rgba(173,129,39,.13);
}

/******
   HERO SECTION
******/
.hero {
  background: linear-gradient(97deg, #FFEEE4 0%, var(--color-fun1) 85%, #FFF8F1 100%);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding-bottom: 64px;
  margin-top: 32px;
}
.hero .container { align-items: center; }
.hero .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}
.hero a.btn {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* Fun floating animation for hero section on page load */
.hero {
  animation: float-in 1.1s cubic-bezier(.7,1.2,.58,1.01);
}
@keyframes float-in {
  0% { opacity: 0; transform: translateY(40px) scale(0.97); }
  75% { opacity: 1; transform: translateY(-10px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0); }
}

/*******
   SECTIONS, FEATURES, CARDS
*******/
.features .content-wrapper > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-card-bg);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-s);
  padding: 15px 18px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.features .content-wrapper ul li img {
  width: 36px;
  height: 36px;
  margin-right: 6px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-s);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-7px) scale(1.025) rotate(-1.5deg);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 18px 20px 18px;
}

.services .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 5px;
}
.services .content-wrapper > ul > li {
  background: var(--color-card-bg);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 19px 22px 19px;
  position: relative;
  margin-bottom: 20px;
  min-width: 220px;
  min-height: 160px;
  font-size: 1.05rem;
  transition: box-shadow .18s, transform .13s;
  border: 3px solid var(--color-fun2);
}
.services .content-wrapper > ul > li:hover {
  box-shadow: var(--shadow-m);
  border-color: var(--color-primary);
  transform: scale(1.025) rotate(-1.5deg);
}
.services .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 12px;
  background: var(--color-fun1);
  border-radius: 9px;
  padding: 3px 11px;
  box-shadow: 0 2px 7px rgba(205,166,76,.07);
  letter-spacing: 0.02em;
}

/*******
   TESTIMONIALS
*******/
.testimonials .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  padding: 20px;
  background: var(--color-fun2);
  border-radius: var(--radius-s);
  box-shadow: 0 4px 18px rgba(127, 246, 214, 0.07);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 430px;
  font-size: 1.12rem;
  color: var(--color-dark);
  position: relative;
  border: 3.5px solid var(--color-primary);
  transition: transform 0.17s,cubic-bezier(.62,.7,.7,1.42), box-shadow .18s;
  z-index: 1;
}
.testimonial-card:before {
  content: '\201D';
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--color-accent);
  position: absolute;
  top: 8px;
  right: 22px;
  opacity: .24;
  z-index: -1;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(139,46,67,.13);
  background: var(--color-fun1);
  border-color: var(--color-fun3);
  transform: rotate(1.5deg) scale(1.025) translateY(-6px);
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}

/*******
   CTA (Call to Action)
*******/
.cta {
  background: var(--color-primary);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: 38px 14px 40px 14px;
  color: var(--color-white);
  margin: 62px 0 24px 0;
  position: relative;
}
.cta h2, .cta p, .cta a.btn {
  color: var(--color-white);
}
.cta a.btn.primary {
  background: var(--color-fun1);
  color: var(--color-primary);
  font-size: 1.1rem;
  border: none;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background 0.17s, color 0.17s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.cta a.btn.primary:after {
  background: var(--color-accent);
  opacity: 0.06;
}
.cta a.btn.primary:hover, .cta a.btn.primary:focus {
  background: var(--color-white);
  color: var(--color-primary);
  transform: scale(1.035) rotate(-1deg);
}

/*******
   LEGAL / TEXT SECTION
*******/
.legal .content-wrapper, .text-section {
  background: var(--color-card-bg);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-s);
  padding: 30px 20px;
  margin-bottom: 20px;
}

.legal .content-wrapper ul {
  list-style: disc inside;
  margin-left: 16px;
  margin-bottom: 8px;
  gap: 10px;
  padding-top: 6px;
}
.legal .content-wrapper ul li {
  margin-bottom: 6px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 14px;
}

/*******
   FOOTER
*******/
footer {
  background: var(--color-card-bg);
  border-top: 6px solid var(--color-fun3);
  box-shadow: 0 -2px 20px 0 rgba(139,46,67,0.06);
  padding: 28px 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer img {
  height: 42px;
  margin-right: 10px;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
footer nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: .97rem;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border 0.17s;
}
footer nav a:hover {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}
footer p {
  font-size: .95rem;
  color: #93707A;
}

/*******
   SUPPORTIVE LAYOUT CLASSES
*******/
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*******
   CONTACT PAGE SPECIFIC
*******/
.contact .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.location-map p {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-primary);
  margin-top: 6px;
}
.contact ul {
  margin-top: 8px;
  margin-bottom: 12px;
  list-style: disc inside;
  gap: 6px;
}
.contact a {
  color: var(--color-accent);
  text-decoration: underline;
  word-break: break-all;
}

/******
   THANK YOU PAGE
******/
.confirmation {
  background: var(--color-fun2);
  border-radius: var(--radius-m);
  padding: 64px 18px 56px 18px;
  box-shadow: 0 1px 30px rgba(127,246,214,0.11);
  margin: 55px 0 40px 0;
  text-align: center;
}
.confirmation .content-wrapper {
  align-items: center;
  gap: 18px;
}
.confirmation h1 {
  color: var(--color-primary);
}
.confirmation a.btn.primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.confirmation a.btn.primary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/*******
   COOKIE CONSENT BANNER
*******/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 1200;
  width: 100vw;
  background: var(--color-fun1);
  box-shadow: 0 -4px 26px 0 rgba(173, 129, 39, 0.16);
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 19px 13px 19px 24px;
  transition: transform .32s cubic-bezier(.71,1.02,.62,1), opacity .21s;
  font-size: 1rem;
  font-family: var(--font-body);
  border-top-right-radius: 22px;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--color-primary);
  max-width: 430px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  border-radius: 14px;
  padding: 8px 17px;
  cursor: pointer;
  margin-right: 2px;
  margin-left: 2px;
  box-shadow: 0 1px 6px rgba(173,129,39,0.08);
  transition: background .17s, color .17s;
}
.cookie-banner .btn-accept {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-banner .btn-accept:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-banner .btn-reject {
  background: var(--color-fun3);
  color: var(--color-white);
  font-weight: 600;
}
.cookie-banner .btn-reject:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-banner .btn-settings {
  background: var(--color-fun2);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-banner .btn-settings:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/*******
   COOKIE MODAL
*******/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: rgba(139,46,67,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-m);
  padding: 36px 26px 30px 26px;
  min-width: 340px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  animation: modal-pop .38s cubic-bezier(.76,1.4,.5,1.02);
}
@keyframes modal-pop {
  0% { opacity: 0; transform: scale(.78) translateY(60px); }
  80% { opacity: 1; transform: scale(1.06) translateY(-7px); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 1.35rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  background: var(--color-fun2);
  border-radius: 10px;
  padding: 7px 12px;
}
.cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: var(--color-accent);
}
.cookie-category .always-on {
  background: var(--color-fun3);
  color: var(--color-white);
  border-radius: 10px;
  font-size: .93rem;
  padding: 3px 10px;
  margin-left: 9px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 10px;
  background: var(--color-fun1);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  font-family: var(--font-body);
  font-weight: 600;
  transition: background .15s, color .15s;
}
.cookie-modal button:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 11px; right: 15px;
  font-size: 1.35rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;align-items: center; justify-content: center;
  transition: background .13s, color .13s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: var(--color-fun3);
  color: var(--color-white);
}

/*******
   ANIMATIONS FOR MICRO-INTERACTIONS
*******/
a, button, .btn, .card, .services .content-wrapper > ul > li, .testimonial-card, .mobile-nav a,
.cookie-banner button, .cookie-modal button {
  transition: background .18s, color .17s, box-shadow .18s, transform .16s;
}

.card:hover, .services .content-wrapper > ul > li:hover {
  transform: scale(1.025) rotate(-1.5deg);
}
.testimonial-card:hover {
  transform: rotate(1.5deg) scale(1.027);
  box-shadow: 0 4px 22px #ff8ba78c;
}

/*******
   RESPONSIVE DESIGN (MOBILE-FIRST)
*******/
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  main > section.section, main > section {
    padding: 34px 8px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    height: auto;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }
  header nav, footer nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 98%; }
  .container, .content-wrapper { padding: 0 4vw; }
  .features .content-wrapper ul, .services .content-wrapper > ul {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .footer .container { flex-direction: column; gap: 10px; }
  .hero { margin-top: 12px; }
  .cta { padding: 24px 5px 32px 5px; margin: 40px 0 16px 0; }
  .confirmation { padding: 34px 10px 38px 10px; }
  .legal .content-wrapper, .text-section { padding: 16px 8px; }
  main > section.section, main > section { padding: 18px 2px; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.18rem; }
  .btn.primary,
  .cta a.btn.primary { font-size: 0.97rem; padding: 8px 18px; }
  .cookie-modal { min-width: 90vw; }
}
@media (max-width: 510px) {
  .hero, .cta, .confirmation { border-radius: 14px; }
  .cookie-banner { flex-direction: column; gap: 13px; align-items: flex-start; padding: 13px 7px; }
  .cookie-modal { padding: 13px 7px 18px 7px; }
}

/*******
   SHOW BURGER MENU ON MOBILE ONLY
*******/
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/*******
   HIDE MOBILE MENU ON DESKTOP
*******/
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/**********
   PRINT STYLES: Hide non-essential
***********/
@media print { 
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay { display:none !important; }
  body { background: #fff !important; color: #000; }
  section, .container, .content-wrapper { box-shadow: none !important; border-radius: 0 !important; background: #fff !important; }
}
