/* --- 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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2ECE7;
  color: #2D241E;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

[tabindex="-1"]:focus {
  outline: none !important;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

hr {
  border: 0;
  border-top: 1px solid #C8BCB2;
  margin: 24px 0;
}

/* --- VARS: PALETTE + FONTS --- */
:root {
  --color-primary: #295672;
  --color-secondary: #88A653;
  --color-accent: #F2ECE7;
  --color-dark: #2D241E;
  --color-vintage-yellow: #F6C674;
  --color-vintage-orange: #D98051;
  --color-vintage-blue: #498fff;
  --color-cream: #F7F5E8;
  --color-warm-grey: #C8BCB2;
  --color-muted: #E8DFCE;
  --color-error: #ED6262;

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 0 #fff3dd, 0 4px 8px rgba(41,86,114,0.07);
}
@media (min-width: 600px) { h1, .h1 { font-size: 3.2rem; } }

h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 24px;
  text-shadow: 0 1px 0 #fff6e4;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}

p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-vintage-orange);
  margin-bottom: 24px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 #fff8ee;
}
strong,
b {
  font-weight: bold;
  color: var(--color-primary);
}

ul {
  margin-bottom: 18px;
  padding-left: 26px;
}
li {
  margin-bottom: 8px;
  position: relative;
}
ul li::before {
  content: '\25A0';
  color: var(--color-vintage-orange);
  font-size: 10px;
  position: absolute;
  left: -18px;
  top: 6px;
}

/* --- LAYOUT: CONTAINERS, SECTIONS --- */
.container {
  padding: 0 18px;
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 769px) {
  .content-wrapper { gap: 24px; }
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
/* For top-level hero, about, contact etc */
.hero-section,
.about-section,
.features-section,
.testimonials-section,
.contact-section,
.about-details,
.unique-section,
.garden-features-section,
.inspiration-section,
.diy-features-section,
.legal-section,
.services-list-section,
.cta-section,
.thank-you-section,
.contact-details-section {
  background: var(--color-cream);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(41, 86, 114, 0.07), 0 1.5px 0 0 #f5e9d8;
  margin-bottom: 60px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .section, section { padding: 28px 6px; margin-bottom: 40px; }
}

/* --- MAIN NAVIGATION & HEADER --- */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 12px 0 rgba(50, 40, 40, 0.07);
  padding: 0;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 72px;
  background: none;
}
.main-nav .logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.main-nav li {
  position: relative;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--color-cream);
  padding: 10px 14px;
  border-radius: 28px;
  transition: background .22s, color .2s;
  background: none;
}
.main-nav a.cta-nav, .main-nav a.cta-nav:visited {
  background: var(--color-secondary);
  color: var(--color-dark);
  font-weight: 800;
  text-shadow: 0 1px 0 #fff6e4;
  box-shadow: 0 4px 24px -8px #a5af97, 0 1px 0 0 #e6f2da;
  border-radius: 28px;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-vintage-yellow);
  color: var(--color-primary);
  text-decoration: none;
}
.main-nav a.cta-nav:hover,
.main-nav a.cta-nav:focus {
  background: var(--color-vintage-orange);
  color: #fff;
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 60px;
  position: absolute;
  top: 14px;
  right: 20px;
  z-index: 202;
  border: 2px solid #d1e1b3;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-vintage-orange);
  color: #fff;
  outline: 2px solid var(--color-primary);
}
@media (min-width: 900px) {
  .mobile-menu-toggle { display: none; }
}

/* Hide main menu on mobile, show on desktop */
@media (max-width: 899px) {
  .main-nav ul { display: none !important; }
}
@media (min-width: 900px) {
  .main-nav ul { display: flex !important; }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(242,236,231,0.97);
  z-index: 2010;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.86, .01, .3, .98);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 20px 0 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  border: 2px solid #b2cbe0;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-error);
  border-color: #a55c5c;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 27px;
  background: var(--color-vintage-yellow);
  margin-bottom: 8px;
  min-width: 200px;
  text-align: center;
  transition: background .22s, color .18s;
  box-shadow: 0 2px 8px 0 #dac29b77, 0 1px 0 0 #ffffff;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-vintage-orange);
  color: #fff;
}

@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero-section {
  background: repeating-linear-gradient(135deg, #ffe6b9, #f2ece7 40px, #f2ece7 100px, #ffe6b9 140px);
  border-bottom: 3px solid var(--color-warm-grey);
  border-radius: 0 0 38px 38px;
  margin-bottom: 60px;
  box-shadow: 0 6px 32px 0 #f7efd3;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 24px 18px 18px 18px;
}
.hero-section h1 {
  color: var(--color-primary);
  margin-top: 8px;
}
.hero-section .cta-button {
  margin-top: 24px;
}

/* --- CTA BUTTONS --- */
.cta-button, a.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-vintage-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 32px;
  margin: 0;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px -5px #e3c3b4, 0 1.5px 0 0 #fff8ee;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.16s, box-shadow .25s;
  outline: none;
}
.cta-button:hover, .cta-button:focus, a.cta-button:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-vintage-blue);
  box-shadow: 0 7px 24px -2px #b7e3cc;
  text-decoration: none;
}

.cta-area {
  margin-top: 32px;
}

/* --- FLEXBOX SPACING AND ALIGNMENT MANDATORY CLASSES --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(41,86,114,0.10);
  border: 1.5px solid #f2ece7;
  padding: 22px 18px;
  z-index: 1;
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px -2px #ccc8bb44;
  border: 1.2px solid var(--color-warm-grey);
  margin-bottom: 20px;
  flex: 1 1 310px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 #e6dac5aa;
  padding: 26px 18px 22px 18px;
  border: 1px dashed #dca869;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 340px;
}
.feature-item img {
  height: 44px;
  background: #fff8ee;
  border-radius: 64px;
  border: 1.2px solid #f6c67460;
  box-shadow: 0 1.5px 6px 0 #e1cfad33;
  padding: 6px;
  margin-bottom: 0.5em;
}
.feature-price, .service-price {
  font-size: 1.08em;
  font-weight: bold;
  color: var(--color-vintage-orange);
}

/* --- FEATURES GRIDS --- */
.features-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .features-grid, .services-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 #e6dac5aa;
  border: 1px solid var(--color-muted);
  padding: 20px 16px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 340px;
}

.pricing-overview {
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--color-vintage-yellow);
  border-radius: 8px;
  color: var(--color-dark);
  font-family: var(--font-display);
  font-size: 1.07em;
}

/* --- ABOUT / LEGAL / INSPO SECTIONS --- */
.text-section, .team-intro, .mission-statement, .unique-section, .our-method,
.trend-highlights, .tipps-tricks, .color-palettes, .workshop-overview, .diy-ideas, .advice-tips,
.garden-trends, .planting-schemes, .organization-tips, .next-steps {
  margin-bottom: 30px;
  background: #fff6e4;
  border-radius: 12px;
  box-shadow: 0 1px 5px 0 #e3d6c140;
  padding: 18px 18px 12px 22px;
  border-left: 5px solid var(--color-vintage-orange);
  font-family: var(--font-body);
}
.team-intro, .mission-statement, .our-method {
  background: #f6c67409;
  border-left-color: var(--color-secondary);
  margin-bottom: 20px;
}

/* Cards for testimonials & review sections */
.testimonials-section {
  background: linear-gradient(105deg,#F2ECE7 65%,#efe2b8 96%,#e3cbc3 100%);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
}

.testimonial-card .testimonial-quote {
  font-size: 1.13rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.55;
}
.testimonial-author {
  font-size: 1rem;
  color: var(--color-secondary);
  font-style: italic;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

/* --- MAP PREVIEW & CONTACT --- */
.map-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #88a65318;
  padding: 9px 17px 10px 13px;
  border-radius: 9px;
  border: 1.3px dashed var(--color-secondary);
  font-size: 1.10em;
  color: var(--color-primary);
  margin: 20px 0 10px 0;
}
.map-preview img {
  height: 27px;
  width: auto;
  display: inline-block;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0 18px 0;
  width: 100%;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 7px #bbc1aa66);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: var(--color-vintage-yellow);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-vintage-orange);
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.95em;
  color: #fff2ce;
}

@media (min-width: 800px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    padding: 48px 44px 16px 44px;
  }
  .footer-logo { margin-bottom: 0; }
  .footer-nav { margin-bottom: 0; }
}

/* --- LEGAL, THANK YOU, ETC --- */
.legal-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 11px 0 #bdbbb333;
  margin-bottom: 50px;
  padding: 42px 0;
}

.thank-you-section {
  background: var(--color-accent);
  border-radius: 19px;
  box-shadow: 0 3px 24px 0 #e4dac3aa;
  padding: 40px 0;
}
.next-steps {
  background: #f6c67418;
  border-left: 5px solid var(--color-secondary);
  border-radius: 9px;
  box-shadow: 0 1px 4px 0 #e2ccae33;
  padding: 18px 18px 12px 22px;
  margin-bottom: 26px;
}

/* --- LIST VARIATIONS --- */
.trend-highlights ul,
.tipps-tricks ul,
.color-palettes ul,
.workshop-overview ul,
.diy-ideas ul,
.advice-tips ul,
.garden-trends ul,
.planting-schemes ul,
.organization-tips ul,
.next-steps ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.trend-highlights li::before, .tipps-tricks li::before, .color-palettes li::before,
.garden-trends li::before, .planting-schemes li::before, .organization-tips li::before {
  color: var(--color-secondary);
  font-size: 12px;
  left: -20px;
}

/* --- ANIMATIONS/MICRO-INTERACTIONS --- */
.section, .hero-section, .features-section, .about-section, .testimonials-section, .contact-section, .garden-features-section, .inspiration-section,
.diy-features-section, .legal-section, .thank-you-section {
  opacity: 1;
  transition: box-shadow 0.35s, background 0.18s;
  will-change: box-shadow, background;
}
.card,
.feature-item,
.service-item,
.testimonial-card {
  transition: box-shadow 0.20s, transform 0.16s;
}
.card:hover,
.feature-item:hover,
.service-item:hover,
.testimonial-card:hover {
  box-shadow: 0 6px 26px -5px #dec59d, 0 3px 0 0 #fff8ee;
  transform: translateY(-4px) scale(1.012);
}

.cta-button:active {
  transform: scale(0.98);
}

/* --- FORMS (IF PRESENT, FALLBACK) --- */
input,
select,
textarea {
  border: 1.3px solid #EADBB2;
  background: #fff7ed;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 1rem;
  margin-bottom: 14px;
  display: block;
  width: 100%;
  transition: border-color 0.18s, box-shadow .16s;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 1px 7px 0 #afd0ee38;
}
label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 6px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8e2;
  border-top: 2px solid var(--color-vintage-yellow);
  box-shadow: 0 -2px 16px 0 #e2c89c;
  z-index: 3000;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1.06rem;
  animation: fadeInBanner .6s;
}
@keyframes fadeInBanner {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.10rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 9px 28px;
  border: 2px solid var(--color-primary);
  transition: background 0.18s, color 0.11s;
  cursor: pointer;
  box-shadow: 0 2px 12px -4px #9fcf6698, 0 1px 0 0 #fff;
}
.cookie-btn.accept {
  background: var(--color-vintage-orange);
}
.cookie-btn.reject {
  background: var(--color-error);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--color-vintage-yellow);
  color: var(--color-primary);
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(41, 86, 114, 0.22);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.26s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff6e4;
  border-radius: 16px;
  max-width: 410px;
  min-width: 260px;
  box-shadow: 0 8px 38px -7px #ecd1ae, 0 2px 0 0 #f6c67455;
  padding: 28px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modalBounce .39s cubic-bezier(.71, -0.03, .27, 1.05);
}
@keyframes modalBounce {
  0% { transform: scale(0.95) translateY(100px); opacity: 0; }
  60% { transform: scale(1.03); opacity: .8; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 1.80rem;
  color: var(--color-secondary);
  background: transparent;
  border: none;
  z-index: 5;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-vintage-orange);
  width: 22px;
  height: 22px;
  margin-right: 5px;
}
.cookie-modal-category.essential label,
.cookie-modal-category.essential input {
  cursor: not-allowed;
  opacity: 0.55;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .main-nav { height: 60px; padding: 0 10px; }
  .main-nav .logo img { height: 32px; }
  .footer-wrapper { padding: 26px 9px 10px 9px; }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.0rem; }
  h2, .h2 { font-size: 1.35rem; margin-bottom: 17px; }
  h3, .h3 { font-size: 1.06rem; }
  .section, section, .hero-section,
  .thank-you-section, .features-section,
  .about-section, .testimonials-section, .contact-section, .about-details,
  .unique-section, .garden-features-section,
  .inspiration-section, .diy-features-section, .legal-section,
  .services-list-section, .cta-section, .contact-details-section {
    padding: 20px 3vw;
    margin-bottom: 32px;
    border-radius: 11px;
  }
  .footer-nav { gap: 9px; flex-wrap: wrap; }
  .footer-logo img { height: 29px; }
}
@media (max-width: 520px) {
  .hero-section .container { min-height: 120px; padding: 12px 6px 9px 6px; }
  .section, section { padding: 12px 2px; }
}

/* --- UTILITIES & VINTAGE RETRO EFFECTS --- */
.rainbow-stripes {
  background: repeating-linear-gradient(90deg,
      #F6C674 0px, #F6C674 30px,
      #D98051 30px, #D98051 55px,
      #295672 55px, #295672 80px,
      #C8BCB2 80px, #C8BCB2 110px
  );
  height: 8px;
  border-radius: 8px 8px 0 0;
}
.pattern-background {
  background-image: url('data:image/svg+xml;charset=utf8,<svg width="120" height="42" viewBox="0 0 120 42" fill="none" xmlns="http://www.w3.org/2000/svg"><circle fill="%23f6c674" opacity="0.1" cx="30" cy="21" r="20"/><circle fill="%23d98051" opacity="0.13" cx="90" cy="21" r="15"/></svg>');
  background-size: 120px 42px;
  background-repeat: repeat;
  border-radius: 12px;
}

/* --- FOCUS STATES --- */
a:focus,
button:focus,
.cta-button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  background: var(--color-vintage-yellow);
  color: var(--color-primary);
}

/* --- Z-INDEXS & NO OVERLAPING --- */
header,
.main-nav,
.mobile-menu,
.mobile-menu-toggle,
.cookie-consent-banner,
.cookie-modal-overlay {
  z-index: 9999;
}

/* --- NO GRID, ONLY FLEX --- */
/* All grid/column properties are avoided throughout as per requirements. */
