/* CSS RESET & FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@400;500;700&display=swap');

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 { scroll-behavior: smooth; }
body {
  line-height: 1.6;
  background: #F5F3ED;
  color: #3A2F24;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; outline: none; transition: color 0.2s; }
a:focus { outline: 2px solid #C2B280; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* COLORS & VARIABLES (with fallback) */
:root {
  --primary: #3A2F24;
  --secondary: #C2B280;
  --accent: #F5F3ED;
  --accent-dark: #f0ede5;
  --brand-grad: #F5F3ED;
  --font-display: 'Merriweather', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
}

/* TYPOGRAPHY */
h1, .hero h1, .confirmation h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  font-weight: 700;
  text-shadow: 1px 3px 16px rgba(194,178,128, 0.14);
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.2px;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--secondary);
  margin-top: 8px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  font-family: var(--font-body);
  margin-bottom: 6px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--secondary);
  font-family: var(--font-body);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
p {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.7em;
  line-height: 1.7;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--primary);
  background: #fff3e8;
  border-left: 5px solid var(--secondary);
  padding: 16px 24px 16px 20px;
  border-radius: 6px;
  margin-bottom: 8px;
}

/* HEADER & MAIN NAV */
header {
  background: var(--accent);
  border-bottom: 2px solid var(--secondary);
  box-shadow: 0 8px 28px -12px rgba(58,47,36,.05);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  min-height: 72px;
  gap: 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  height: 50px;
  margin: 0 8px 0 0;
  z-index: 102;
}
.logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0px 4px 12px #C2B28022);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  z-index: 100;
}
.main-nav a {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 1rem;
  padding: 7px 8px 7px 8px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.main-nav .nav-cta {
  padding: 7px 20px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 24px;
  box-shadow: 0 2px 10px #c2b28015;
  transition: background 0.19s, color 0.19s, transform 0.16s;
}
.main-nav .nav-cta:hover {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-3px) scale(1.04);
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--secondary);
  background: none;
  border: none;
  z-index: 200;
  margin-left: 18px;
  transition: color 0.18s, transform 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  color: var(--primary);
  outline: none;
}

@media (max-width:900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(58,47,36, 0.92);
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.44s cubic-bezier(.22,.61,.36,1);
  transform: translateX(100%);
  will-change: opacity, transform;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--secondary);
  background: none;
  border: none;
  margin: 24px 32px 10px 0;
  align-self: flex-start;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent);
  background: var(--secondary);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
  padding: 36px 32px 0 0;
  width: 280px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px 0 0 8px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* HERO SECTION */
.hero {
  min-height: 300px;
  background: linear-gradient(90deg, #f5f3ed 68%, #c2b280 100%);
  display: flex;
}
.hero .container {
  min-height: 290px;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  margin-bottom: 10px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  padding: 13px 28px;
  margin-top: 4px;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 6px 22px -8px #3a2f2447;
  transition: background 0.15s, color 0.16s, transform 0.21s;
  border: 2px solid var(--secondary);
  letter-spacing: 0.04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
}

/* FEATURE GRID */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  min-width: 225px;
  max-width: 305px;
  box-shadow: 0 8px 28px -14px #3a2f241c;
  padding: 30px 20px 20px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
  border: 2px solid #ede2c5;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
  filter: grayscale(0.1) drop-shadow(0px 2px 8px #c2b28019);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 16px 44px -10px #3a2f2431;
  transform: translateY(-6px) scale(1.03) rotate(-2deg);
  border-color: var(--secondary);
}

/* SERVICES OVERVIEW / LISTS */
.services-overview ul,
.services ul,
.usp ul,
.idea-list ul,
.trend-insights ul,
.team ul,
.process ol {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 4px;
}
.services-overview ul li,
.services ul li,
.usp ul li,
.idea-list ul li,
.trend-insights ul li,
.team ul li,
.process ol li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fefbfa;
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 1.1rem;
  color: var(--primary);
  box-shadow: 0 2.5px 10px -6px #c2b28033;
}
.services-overview ul li img {
  height: 28px;
  width: 28px;
}

/* TESTIMONIALS */
.testimonials .testimonial-card,
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 12px 48px -18px #3a2f2444;
  border: 2px solid #eadecb;
  position: relative;
  transition: box-shadow .17s, border-color .17s, transform .17s;
}
.testimonial-card:before {
  content: "\201C";
  color: var(--secondary);
  font-size: 3.4rem;
  font-family: var(--font-display);
  position: absolute;
  top: 10px; left: 16px;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: 0 20px 60px -12px #3a2f2475;
  border-color: var(--secondary);
  transform: scale(1.025) rotate(1deg);
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--font-body);
  font-style: normal;
  opacity: 0.88;
  align-self: flex-end;
}
.testimonials h2 {
  margin-bottom: 36px;
}

/* PROJECT SUMMARIES */
.project-summaries .project {
  background: #f8f5eb;
  border-radius: 18px;
  box-shadow: 0 2px 16px -8px #c2b28025;
  padding: 24px 22px 18px 22px;
  margin-bottom: 24px;
  border: 1.5px solid #e9dfbc;
}

.project h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.14rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* BLOG LIST */
.blog-list .blog-item {
  background: #f9f7f3;
  border-radius: 15px;
  box-shadow: 0 2px 14px -7px #c2b28030;
  border: 1.5px solid #e7d9aa;
  padding: 20px 20px 16px 20px;
  margin-bottom: 22px;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.blog-list .blog-item:hover {
  box-shadow: 0 8px 30px -10px #3a2f2430;
  border-color: var(--secondary);
  transform: scale(1.018);
}

/* NEWSLETTER */
.newsletter, .newsletter-info {
  background: #f8f0dd;
  border-radius: 17px;
  padding: 24px 24px 14px 24px;
  margin-bottom: 20px;
}
.newsletter-info a {
  color: var(--primary);
  text-decoration: underline;
}

/* CARD CONTAINER PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px -9px #3a2f2435;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  border: 1.5px solid #ede2c5;
  transition: box-shadow .15s, border-color .15s, transform .15s;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 14px 36px -10px #c2b28050;
  border-color: var(--secondary);
  transform: scale(1.016);
}

/* FLEXBOX GRID PATTERNS */
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ANIMATION & EFFECTS */
a, button, .cta-btn, .feature-item, .blog-item, .card, .testimonial-card {
  transition: box-shadow .16s, background .14s, color .15s, transform .18s;
}

/* ABOUT PAGE: TEAM MEMBERS */
.team-member {
  background: #f6eee2;
  border-radius: 13px;
  padding: 18px 14px 12px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2.5px 14px -6px #c2b28025;
}
.team-member:last-child { margin-bottom: 8px; }

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 44px 0 28px 0;
  margin-top: 44px;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 5px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact, .footer-hours {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 1em;
}
.footer-contact img {
  vertical-align: text-bottom;
  height: 1.1em;
  margin-right: 7px;
}
.footer-hours { opacity: 0.81; margin-top: 8px; }

/* LEGAL / COOKIE / THANK YOU SECTIONS */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 26px -12px #c2b28023;
  padding: 40px 22px 34px 22px;
  margin-bottom: 48px;
}
.legal .text-section {
  font-size: 1.13rem;
}
.confirmation {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation .container {
  min-height: 220px;
  align-items: center;
  justify-content: center;
}
.confirmation .content-wrapper {
  align-items: center;
  gap: 24px;
}

/* CONTACT PAGE */
.contact-details ul, .contact-details .text-section ul {
  gap: 18px;
  font-size: 1.11rem;
}
.contact-details ul li {
  background: #f9f7ef;
  border-radius: 12px;
  padding: 10px 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 1.5px 10px -4px #c2b28027;
}
.contact-details ul li img {
  height: 22px;
  width: 22px;
}

/* MAP SECTION */
.map .text-section {
  background: #fefbf7;
  border-radius: 11px;
  padding: 20px 22px;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px -6px #c2b28013;
}

/* CTA SECTIONS */
.cta {
  background: linear-gradient(110deg, #c2b280 66%, #f5f3ed 100%);
  border-radius: 22px;
  box-shadow: 0 5px 28px -11px #c2b28033;
  margin-bottom: 40px;
  padding: 32px 20px;
  display: flex;
}
.cta .container {
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta h2 {
  color: var(--primary);
}
.cta-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* MODALS / ANIMATIONS */
@keyframes cookie-slide-up {
  0% { transform: translateY(60px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
@keyframes mobile-menu-slide-in {
  0%   { transform: translateX(100%); opacity:0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #f8ecc2;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 23px 20px 16px 20px;
  z-index: 1600;
  box-shadow: 0 -3px 26px -8px #c2b28028;
  border-top: 3px solid var(--secondary);
  animation: cookie-slide-up .66s cubic-bezier(.19,.9,.41,1) both;
}
.cookie-banner__text {
  font-size: 1.02rem;
  font-family: var(--font-body);
  margin-bottom: 0.4em;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 7px 18px;
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  font-family: var(--font-body);
  transition: background 0.12s, color 0.14s, transform 0.12s;
  margin-bottom: 0.1em;
  background: var(--secondary); color: var(--primary);
}
.cookie-accept {
  background: var(--primary);
  color: var(--accent);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fbe3e3;
}
.cookie-settings {
  background: #fff9e4;
  color: var(--primary);
  border: 2px dashed var(--secondary);
}
.cookie-settings:hover {
  background: var(--secondary);
  color: var(--accent);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(58,47,36, 0.99);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__window {
  background: #fffdf2;
  color: var(--primary);
  border-radius: 20px;
  max-width: 410px;
  min-width: 265px;
  padding: 36px 30px 18px 30px;
  box-shadow: 0 10px 64px -17px #3a2f2439;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-slide-up .24s ease;
  position: relative;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 11px;
}
.cookie-modal__close {
  position: absolute;
  top: 15px;
  right: 24px;
  font-size: 1.7rem;
  color: var(--secondary);
  background: none;
  border: none;
  transition: color 0.19s;
  z-index: 3;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  color: var(--primary);
  background: #f5f3ed;
  border-radius: 50%;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 11px 7px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1.5px 10px -4px #c2b28011;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #eee9dd;
  border-radius: 14px;
  border: 1px solid #dec88a;
  position: relative;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: background 0.14s, border 0.14s;
}
.cookie-toggle:checked {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  transition: transform 0.18s;
  box-shadow: 0 0.6px 4px #c2b28041;
}
.cookie-toggle:checked::before {
  transform: translateX(14px);
}
.category-name {
  font-family: var(--font-body);
  font-size: 1.09rem;
  color: var(--primary);
  min-width: 100px;
  font-weight: 600;
}
.category-desc {
  font-size: .98rem;
  color: #82724c;
  margin-left: 7px;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal__actions button {
  padding: 8px 18px;
  border-radius: 15px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  border: none;
  transition: filter 0.13s, background 0.15s, color 0.11s;
  font-size: 1.07rem;
}
.cookie-modal__actions button:hover {
  background: var(--primary);
  color: var(--accent);
  filter: brightness(1.09);
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: var(--font-body);
  border: 1.5px solid #c2b280;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  background: #fff;
  color: var(--primary);
  outline: none;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--secondary);
}
label {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 6px;
  color: var(--primary);
}

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 10px;
  background: #e2d6b8;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 7px;
}

/* MEDIA QUERIES - MOBILE RESPONSIVE */
@media (max-width:900px) {
  .container {
    padding: 0 12px;
    max-width: 98vw;
  }
  .hero {
    min-height: 210px;
    background: #f5f3ed;
    padding-bottom: 12px;
  }
  .section, .legal, .cta {
    padding: 32px 7px;
    margin-bottom: 36px;
  }
  .card, .card-container, .testimonial-card, .feature-item {
    min-width: 99%;
    max-width: 100%;
  }
  .feature-item {
    padding: 18px 10px 18px 14px;
  }
  .cta .content-wrapper { align-items: flex-start; }
}

@media (max-width:768px) {
  h1, .hero h1, .confirmation h1 {
    font-size: 2rem;
  }
  h2 { font-size: 1.38rem; }
  .container { padding: 0 6px; }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px !important;
  }
  .feature-item, .card, .testimonial-card {
    width: 99%;
    min-width: 95%;
    max-width: 99vw;
    padding: 13px 8px 14px 12px;
  }
  .cta {
    border-radius: 15px;
    margin-bottom: 24px;
    padding: 18px 5px;
    font-size: 1rem;
  }
  .cta .container, .cta .content-wrapper { align-items: flex-start; }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .card {
    padding: 13px 7px 13px 10px;
    font-size:1rem;
  }
}

/* SMALL MOBILE ADJUSTMENTS */
@media (max-width:540px) {
  .hero, .section, .legal, .cta, .confirmation {
    padding: 13px 0 9px 0;
  }
  h1, .hero h1, .confirmation h1 {
    font-size: 1.2rem;
  }
  h2 { font-size: 1rem; margin-bottom: 8px; }
  .logo img {
    height: 31px;
    max-width: 130px;
  }
  .main-nav, .footer-nav {
    gap: 8px;
    font-size: 0.88em;
  }
}

/* PRINT SAFE COLORS (in case variables fail) */
@media print {
  * {
    color: #3A2F24 !important;
    background: #fff !important;
    text-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  a, a:visited { color: #3A2F24 !important; text-decoration: underline !important; }
}
