/* ---- CSS RESET & BASE ---- */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #1a1f1a;
  color: #F2E8CF;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.22s cubic-bezier(.4,.2,.1,1); }
ul, ol { list-style-position: inside; }

::-webkit-scrollbar { width: 10px; background: #232823; }
::-webkit-scrollbar-thumb { background: #386641; border-radius: 10px; }

/* ---- BRAND FONTS ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Times New Roman, serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #A7C957;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.4rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 600; }

p, li, blockquote, label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
strong { color: #A7C957; font-weight: 700; }

/* ---- TYPOGRAPHY SCALE ---- */
p { font-size: 1rem; margin-bottom: 12px; }
ul, ol { margin-bottom: 18px; }
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #386641;
  background: #F2E8CF;
  border-left: 4px solid #A7C957;
  padding: 18px 20px 10px 24px;
  margin-bottom: 14px;
  border-radius: 17px 7px 19px 7px;
}

/* ---- BRAND COLORS ---- */
:root {
  --primary: #386641;
  --secondary: #A7C957;
  --accent: #F2E8CF;
  --bg-dark: #1a1f1a;
  --bg-light: #25311e;
  --neon: #30e671;
}

/* ---- UTILITY CLASSES ---- */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section { margin-bottom: 20px; }
.text-section ul,
.text-section ol { margin-left: 16px; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ---- HEADER ---- */
header {
  width: 100%;
  background: #232823;
  box-shadow: 0 2px 12px 0 rgba(40,70,44,0.06);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.logo img { height: 46px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-size: 1rem;
  color: #A7C957;
  padding: 7px 12px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #30e671;
  background: #324C24;
  outline: none;
}

/* Hide desktop main-nav on mobile */
@media (max-width: 920px) {
  .main-nav { display: none; }
}

/* Burger menu, Mobile navigation */
.mobile-menu-toggle {
  display: inline-block;
  font-size: 2rem;
  color: #A7C957;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  z-index: 51;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #A7C957;
  color: #1a1f1a;
  transform: scale(1.07);
}
@media (min-width: 921px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,40,36,0.98);
  box-shadow: 0 0 40px 13px #194225;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.61,.31,.61,1.27);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding: 34px 28px 12px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #A7C957;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: #A7C957;
  color: #194225;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  color: #A7C957;
  background: none;
  border-radius: 7px;
  padding: 12px 0 10px 12px;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #324C24;
  color: #30e671;
}

/* ---- HERO / INTRO SECTIONS ---- */
.hero {
  background: linear-gradient(130deg, #1a1f1a 77%, #386641 100%);
  border-radius: 0 0 50px 50px;
  box-shadow: 0 9px 48px 0 rgba(48, 230, 113, 0.09);
  min-height: 33vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 78px 0 46px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 { color: #A7C957; font-size: 2.8rem; }
.subheadline {
  color: #F2E8CF;
  font-size: 1.26rem;
  margin-bottom: 6px;
  font-style: italic;
}

@media (max-width: 700px) {
  .hero { min-height: 260px; padding: 44px 0 30px 0; }
  .hero h1 { font-size: 2.0rem; }
}

/* ---- BUTTONS ---- */
.btn-primary, .btn-secondary {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 16px 0 rgba(48, 230, 113, 0.14);
  transition: background 0.2s, box-shadow 0.29s;
  margin-right: 10px;
}
.btn-primary {
  color: #1a1f1a;
  background: #A7C957;
  box-shadow: 0 0 0 2px #386641;
  text-shadow: 0 1px 6px #f2e8cf44;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #30e671;
}
.btn-primary:hover, .btn-primary:focus {
  background: #30e671;
  color: #1a1f1a;
  box-shadow: 0 4px 32px 0 #30e67144;
}
.btn-secondary {
  color: #A7C957;
  background: #232823;
  border: 2px solid #A7C957;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #A7C957;
  color: #1a1f1a;
}
a.btn-primary, a.btn-secondary { text-decoration: none; }

/* ---- SECTION LAYOUTS ---- */
.features, .services, .about, .values, .process, .faq, .legal, .projects-overview, .galleria-intro, .blog-intro, .contact, .contact-prompt, .thank-you, .about-brief, .services-overview, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #25311e;
  border-radius: 24px;
  padding: 32px 22px 24px 22px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 270px;
  box-shadow: 0 2px 18px 0 rgba(48, 230, 113, 0.06);
  border: 1px solid #385f4177;
  margin-bottom: 24px;
  position: relative;
  transition: box-shadow 0.18s, background 0.25s;
}
.feature-item img {
  height: 38px; margin-bottom: 2px; filter: drop-shadow(0 0 4px #a7c95733);
}
.feature-item h3 { color: #A7C957; font-size: 1.18rem; margin-bottom: 7px; }
.feature-item p { color: #F2E8CF; }
.feature-item:hover {
  background: #1a1f1a;
  box-shadow: 0 12px 32px 0 #30e67122, 0 0 0 2px #A7C957;
}

@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-item { max-width: unset; width: 100%; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #25311e;
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(30,60,45,0.09);
  padding: 24px 22px;
  transition: box-shadow 0.2s;
  border: 1px solid #38664133;
}
.card:hover { box-shadow: 0 8px 32px 0 #30e67122; }

.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; gap: 14px; }
  h1, h2 { font-size: 1.26rem; }
}

.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2E8CF;
  color: #1a1f1a;
  border-radius: 17px;
  margin-bottom: 20px;
  box-shadow: 0 3px 24px 0 #A7C95755;
  border-top: 3px solid #A7C957;
  border-bottom: 3px solid #386641;
  position: relative;
  font-size: 1.08rem;
  flex-wrap: wrap;
  min-width: 220px;
}
.testimonial-card blockquote {
  background: none;
  color: #386641;
  border: none;
  margin-bottom: 0;
  font-size: 1.05em;
  padding: 0;
  font-style: italic;
}
.testimonial-card .client-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #386641;
  margin-left: 12px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .testimonials .content-wrapper { gap: 16px; }
}

/* ---- CARDS, PROMPTS ---- */
.contact-prompt {
  background: #25311e;
  border-radius: 23px;
  padding: 44px 22px;
  box-shadow: 0 6px 28px 0 #38664112;
  text-align: center;
  margin-bottom: 60px;
}
.contact-prompt h2 {
  color: #A7C957;
  font-size: 2rem;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .contact-prompt { padding: 28px 10px; }
}

.thank-you, .services-overview, .about-brief, .galleria-intro, .blog-intro, .legal {
  background: #1a1f1a;
  border-radius: 17px;
  box-shadow: 0 1px 12px 0 #38664111;
}

/* ---- FOOTER ---- */
footer {
  width: 100%;
  background: #232823;
  color: #F2E8CF;
  padding: 40px 0 16px 0;
  border-top: 2px solid #A7C95733;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 230px;
  gap: 10px;
}
.brand-footer img { height: 52px; margin-bottom: 8px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}
.footer-nav a {
  color: #A7C957;
  padding: 2px 0;
  font-size: 1rem;
  border-radius: 5px;
  transition: color 0.17s, background 0.17s;
}
.footer-nav a:hover {
  color: #30e671;
  background: #1a1f1a;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 325px;
  font-size: 0.98rem;
}
.contact-info p, .contact-info a { color: #F2E8CF; font-family: 'Montserrat', sans-serif; }
.contact-info img { height: 18px; margin-right: 7px; vertical-align: middle; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}

/* ---- LEGAL PAGES & OTHER ---- */
.legal, .faq, .process, .values, .about, .services, .projects-overview, .galleria-intro, .blog-intro, .contact {
  background: #25311e;
  border-radius: 20px;
  box-shadow: 0 3px 24px 0 #38664111;
}
.text-section ul, .text-section ol {
  padding-left: 18px;
  color: #F2E8CF;
  margin-bottom: 14px;
}
.text-section h3 {
  color: #A7C957;
  margin-bottom: 6px;
  font-size: 1.11rem;
}

/* ---- MAP CONTAINER ---- */
.map {
  margin-top: 10px;
  padding: 12px 15px;
  background: #222e1e;
  border-radius: 11px;
  color: #A7C957;
  font-size: 0.97rem;
  box-shadow: 0 2px 14px 0 #A7C95711;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 700px) {
  .container, .content-wrapper, .feature-grid, .card-container, .content-grid, .footer-nav, .contact-info {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .section, .features, .services, .about, .projects-overview, .testimonials, .contact-prompt {
    padding: 28px 6px !important;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
}

/* ---- FOCUS STYLES (ACCESSIBILITY) ---- */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .footer-nav a:focus {
  outline: 3px solid #30e671;
  outline-offset: 1px;
}

/* ---- TRANSITIONS & MICRO-INTERACTIONS ---- */
button, a, .btn-primary, .btn-secondary {
  transition: background 0.22s, color 0.16s, box-shadow 0.22s;
}
.feature-item, .card, .testimonial-card {
  transition: box-shadow 0.22s, background 0.18s, transform 0.2s;
}
.feature-item:hover, .card:hover, .testimonial-card:hover {
  transform: translateY(-5px) scale(1.022);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #232823;
  color: #A7C957;
  border-top: 3px solid #A7C957;
  box-shadow: 0 -3px 20px 0 #30e67122;
  width: 100vw;
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  gap: 16px;
  align-items: center;
  animation: cookieDropIn 0.7s cubic-bezier(.49,1.64,.51,.99);
}
@keyframes cookieDropIn {
  0% { transform: translateY(150%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: #A7C957;
  color: #25311e;
  border-radius: 9px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 1px 10px 0 #a7c95744;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
}
.cookie-banner button:hover {
  background: #30e671;
  color: #1a1f1a;
  box-shadow: 0 6px 24px 0 #30e67155;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #A7C957;
  border: 2px solid #A7C957;
  box-shadow: none;
}
.cookie-banner .cookie-settings:hover {
  background: #25311e;
  color: #30e671;
}

/* ---- COOKIE MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 10000;
  background: rgba(26, 31, 26, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.26s cubic-bezier(.49,1.64,.51,.99);
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #232823;
  color: #A7C957;
  border-radius: 23px;
  box-shadow: 0 2px 28px 0 #30e67144;
  max-width: 370px;
  width: 98vw;
  padding: 38px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalScaleIn 0.16s cubic-bezier(.61,.31,.61,1.27);
}
@keyframes modalScaleIn {
  0% { transform: scale(0.75); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #A7C957;
  font-size: 1.5rem;
  margin-bottom: 13px;
  font-family: 'Playfair Display', serif;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal input[type=checkbox],
.cookie-modal input[type=radio] {
  accent-color: #A7C957;
  width: 18px; height: 18px;
  margin: 0 5px 0 0;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 13px;
  padding-top: 20px;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #A7C957;
  border: none;
  font-size: 1.7rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: -23px;
  padding: 0 7px;
  transition: color 0.19s;
}
.cookie-modal .close-modal:hover {
  color: #30e671;
}
.cookie-modal .cookie-category-info {
  font-size: 0.98rem;
  color: #F2E8CF;
  margin-left: 5px;
}
.cookie-modal .cookie-category-essential {
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 420px) {
  .cookie-modal { padding: 22px 7vw 18px 7vw; }
}

/* ---- FORM ELEMENTS ---- */
input[type='text'], input[type='email'], textarea {
  background: #232823;
  border: 1.5px solid #A7C957;
  border-radius: 8px;
  color: #F2E8CF;
  padding: 11px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2em;
  width: 100%;
  transition: border 0.16s, box-shadow 0.18s;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  outline: none;
  border: 2px solid #30e671;
  box-shadow: 0 0 0 2px #38664166;
}
label { font-family: 'Montserrat', sans-serif; color: #A7C957; margin-bottom: 5px; }

::-webkit-input-placeholder { color: #F2E8CFaa; }
::-moz-placeholder { color: #F2E8CFaa; }
:-ms-input-placeholder { color: #F2E8CFaa; }
::placeholder { color: #F2E8CFaa; }

/* ---- NEON ACCENTS ---- */
.neon {
  text-shadow:
    0 0 2px #30e671,
    0 0 6px #a7c95744,
    0 0 18px #30e67144;
  color: #30e671 !important;
}

/* ---- ANIMATIONS ---- */
@media (prefers-reduced-motion: no-preference) {
  .feature-item:hover, .testimonial-card:hover, .btn-primary:hover, .btn-secondary:hover, .mobile-menu.active {
    transition: all 0.2s cubic-bezier(.4,.2,.1,1);
  }
}

/* ---- SMALL DETAILS ---- */
hr {
  border-top: 1.5px solid #A7C95744;
  margin: 28px 0;
}
.section:not(:last-child) { margin-bottom: 60px; }

/* ---- PRINTING ---- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #1a1f1a !important; }
}
