/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust:100%;
  scroll-behavior: smooth;
  background: #FAFAFA;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #253746;
  background: #F4E6D6;
  min-height:100vh;
  line-height:1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: #DAA520;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #FFC300;
  text-decoration: underline;
}
* {
  box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #253746;
  margin-bottom: 0.5em;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.6rem;
  color: #DAA520;
  text-shadow: 0 3px 14px rgba(218,165,32,0.18);
}
h2 {
  font-size: 2rem;
  color: #253746;
}
h3 {
  font-size: 1.3rem;
  color: #DAA520;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #253746;
}
p, li {
  font-size: 1rem;
  margin-bottom: 8px;
}
strong {
  color: #253746;
  font-weight:700;
}

/* LAYOUT CONTAINERS ====================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX PATTERNS =============================== */
.card-container, .features-grid, .services-cards, .project-stories, .footer-links, .footer-contact, .usp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(218,165,32,0.09),0 2px 5px #25374622;
  padding: 30px 24px;
  min-width: 270px;
  flex: 1 1 260px;
  transition: transform .16s cubic-bezier(.4,0,.2,1), box-shadow .18s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 28px rgba(218,165,32,0.18), 0 4px 14px #25374630;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 29px rgba(37,55,70,0.07), 0 2px 8px #DAA52020;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 260px;
  transition: box-shadow .21s, transform .19s;
}
.testimonial-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 16px 44px rgba(218,165,32,0.18), 0 10px 28px #25374622;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION ================================== */
.hero {
  background: #253746;
  color: #fff;
  padding: 50px 0 60px 0;
  margin-bottom: 60px;
  width:100%;
}
.hero .container { align-items: flex-start; }
.hero .content-wrapper {
  gap: 22px;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 0 8px 32px #DAA52044, 0 1px 0 #253746;
}
.hero .subheadline {
  color: #FFC300;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.hero .cta {
  background: #DAA520;
  color: #253746;
  font-weight: 800;
  padding: 16px 38px;
  border-radius: 40px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: 0 2px 18px #DAA52044;
  transition: background .21s, color .22s, transform .13s;
}
.hero .cta:hover, .hero .cta:focus {
  background: #FFC300;
  color: #253746;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 28px #DAA52055;
}

/* NAVIGATION & HEADER =========================== */
header {
  background: #fff;
  box-shadow: 0 2px 18px #25374608, 0 1px 0 #F4E6D6;
  position: relative;
  z-index: 100;
}
header .container {
  min-height: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #253746;
  border-radius: 8px;
  padding: 10px 18px;
  transition: background .18s, color .16s;
}
header nav a.cta,
header nav a.primary {
  background: #DAA520;
  color: #fff;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px #DAA52044;
}
header nav a.cta:hover, header nav a.primary:hover {
  background: #FFC300;
  color: #253746;
}
header nav a:hover:not(.cta):not(.primary), header nav a:focus:not(.cta):not(.primary) {
  background: #253746;
  color: #DAA520;
}
/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: #DAA520;
  color: #253746;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height:48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 110;
  margin-left:10px;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover {
  background: #FFC300;
  color: #253746;
}
/* MOBILE MENU ============================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #253746ee;
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform .36s cubic-bezier(.47,.07,.35,1.0);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 40px #25374699;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #DAA520;
  color: #253746;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 22px;
  top: 22px;
  cursor: pointer;
  z-index: 1250;
  transition: background .19s, color .21s, transform .09s;
}
.mobile-menu-close:hover {
  background: #FFC300;
  transform: scale(1.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 80px;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  padding: 10px 4px;
  border-radius: 6px;
  min-width: 180px;
  transition: background .18s, color .16s;
  margin-bottom: 8px;
}
.mobile-nav a:last-child {
  margin-bottom:0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DAA520;
  color: #253746;
}

/* Hide desktop nav on mobile / show burger */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Hide mobile menu/close button on desktop */
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-close,
  .mobile-nav,
  .mobile-menu-toggle { display: none !important; }
}

/* FEATURES, BENEFITS, SERVICES ===================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 17px;
  padding: 28px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 14px #DAA52017, 0 1px 3px #25374614;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .20s,transform .14s;
}
.feature:hover {
  box-shadow: 0 7px 24px #DAA52031, 0 10px 24px #25374611;
  transform: scale(1.04) translateY(-3px);
}
.feature img {
  height: 46px; width:46px;
  margin-bottom:6px;
}
.feature h3 {
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #253746;
}
.feature p {
  font-size: 0.97rem;
  color: #666;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px 30px 15px 18px;
  border-radius: 11px;
  font-weight: 600;
  color: #253746;
  box-shadow: 0 2px 14px #DAA52012;
}
.benefit-list img {
  height: 28px; width:28px;
}
.usp-icons {
  gap: 16px;
  margin-top:8px;
}
.usp-icons img {
  height: 40px;width:40px;
}

.services-cards {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.service-card {
  min-width: 245px;
  background: #fff;
  border-radius: 15px;
  padding: 28px 20px 24px 20px;
  flex:1 1 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 14px #DAA52017, 0 1px 3px #25374614;
  transition: box-shadow .17s,transform .18s;
  position: relative;
}
.service-card img {
  height:43px;width:43px;margin-bottom:6px;
}
.service-card h2 {
  font-size:1.25rem;
  font-weight:700;
  color:#253746;
  margin-bottom:2px;
}
.service-card .service-price {
  color:#DAA520;
  font-weight:800;
  font-size:1.01rem;
  margin-top:11px;
}
.service-card:hover {
  box-shadow: 0 9px 28px #DAA52026, 0 10px 20px #25374615;
  transform:scale(1.04) translateY(-3px);
}

/* ACCORDION FOR DETAILS & FAQ ====================*/
.accordion-list, .accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion-item, .faq-item {
  background: #fff;
  border-radius:14px;
  box-shadow:0 2px 14px #25374610;
  padding: 18px 22px 16px 22px;
  transition:box-shadow .16s, background .18s;
  position:relative;
}
.accordion-item h3, .faq-item h2 {
  font-size:1.09rem;
  margin-bottom:7px;
  color: #253746;
  cursor:pointer;
  font-weight:700;
}
.accordion-item div, .faq-item div {
  font-size:0.97rem;
  color:#263746;
  line-height:1.62;
}
.accordion-item.open, .faq-item.open {
  background: #F4E6D6;
  box-shadow:0 6px 28px #DAA52018;
}

/* PROJECT STORIES/REFERENCES ====================*/
.project-stories {
  flex-wrap: wrap;
  gap: 32px;
}
.project-desc {
  background: #fff;
  border-radius:12px;
  box-shadow:0 2px 14px #DAA52011,0 1px 6px #25374608;
  padding:22px 16px;
  min-width:240px;
  flex:1 1 235px;
  margin-bottom:18px;
  transition:box-shadow .19s,transform .14s;
}
.project-desc:hover {
  box-shadow:0 7px 24px #DAA52026, 0 8px 14px #25374612;
  transform:scale(1.03) translateY(-2px);
}

/* TESTIMONIALS ================================ */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom:18px;
}
.testimonial-card blockquote {
  font-size:1.07rem;
  color:#253746;
  font-style:italic;
  margin:0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-author {
  font-size:0.99rem;
  color:#DAA520;
  font-weight: 700;
  margin-top:7px;
}
.stars {
  font-size:1.23rem;
  color:#FFC300;
  font-family:'Montserrat',Arial,Helvetica,sans-serif;
  letter-spacing:0.12em;
}

/* FOOTER =============================== */
footer {
  background: #253746;
  color: #fff;
  padding: 34px 0 24px 0;
  margin-top: 48px;
  width: 100%;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 18px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction:row;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-size: 1rem;
}
.footer-brand img {
  height:33px;width:auto;
}
.footer-links {
  gap: 18px;
  flex-wrap:wrap;
}
.footer-links a {
  color: #DAA520;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background .18s, color .18s;
}
.footer-links a:hover, .footer-links a:focus {
  background: #DAA520;
  color: #253746;
}
.footer-contact {
  flex-direction:column;
  gap:9px;
  font-size: 0.95rem;
  color: #fff;
}
.footer-contact a {
  color: #FFC300;
  transition: color .18s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
}

/* CTA BUTTONS ================================== */
.cta, .cta.primary {
  background: #DAA520;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 40px;
  box-shadow: 0 2px 12px #DAA52033,0 1px 2px #25374611;
  cursor: pointer;
  margin-top: 4px;
  transition: background .20s, color .21s, transform .14s;
  display: inline-block;
  text-align:center;
}
.cta:hover, .cta:focus {
  background: #FFC300;
  color: #253746;
  transform: scale(1.04);
}

/* FORM (contact page anticipated) ============== */
input, textarea, select {
  font-family: 'Roboto',Arial,Helvetica,sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #25374644;
  background: #fff;
  color: #253746;
  transition: border .13s;
  margin-bottom: 15px;
  width: 100%;
  outline:none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #DAA520;
  background: #F4E6D6;
}
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

/* COOKIE CONSENT BANNER ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right:0;
  width: 100vw;
  background: #253746ee;
  color: #fff;
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 28px;
  box-shadow: 0 -6px 24px #25374666;
  transition: transform 0.33s cubic-bezier(.35,1.5,.55,0.9), opacity .2s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(130%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 1.02rem;
  flex: 1 1 200px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: #DAA520;
  color: #253746;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  padding: 8px 22px;
  font-size: 1rem;
  margin: 0;
  transition: background .15s, color .13s, box-shadow .14s;
  box-shadow: 0 1px 5px #DAA52022;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFC300;
  color: #253746;
}
.cookie-banner .cookie-settings {
  background: #253746;
  color: #DAA520;
  border: 1.5px solid #DAA520;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #fff;
  color: #253746;
  border-color: #FFC300;
}

/* COOKIE MODAL POPUP =========================== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-60%) scale(0.96);
  z-index: 2600;
  background: #fff;
  color: #253746;
  border-radius: 17px;
  padding: 38px 34px 32px 34px;
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 10px 48px #25374680,0 2px 8px #DAA52030;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s, transform .18s;
  font-size: 1rem;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  color: #DAA520;
  margin-bottom:14px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 20px 0 25px 0;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category-row label {
  font-weight: 700;
  font-size:1.02rem;
  color: #253746;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: #DAA520;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-actions {
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent;
  color: #253746;
  border:none;
  font-size:1.5rem;
  cursor:pointer;
  padding:6px;
  border-radius: 8px;
  transition: background .17s;
}
.cookie-modal .cookie-close:hover {
  background: #F4E6D6;
  color: #DAA520;
}

/* RESPONSIVENESS ========================= */
@media (max-width: 990px) {
  .container { max-width: 100vw; }
  .content-wrapper { gap: 18px; }
  .card, .service-card, .testimonial-card, .feature, .project-desc {  min-width: 200px; }
  .header nav { gap:16px; }
  .features-grid,.services-cards,.testimonials, .project-stories { gap: 14px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
  .hero { padding: 28px 0 38px 0; margin-bottom:34px; }
  .hero h1 { font-size: 1.44rem; }
  .hero .subheadline { font-size: .99rem; }
  .container { padding:0 12px; }
  .footer-brand { font-size: 0.96rem; }
  .footer-brand img { height:26px; }
  footer .container { flex-direction: column; gap: 14px; align-items: flex-start; }
  .card-container, .features-grid, .services-cards, .testimonials, .project-stories, .footer-links {
    flex-direction: column;
    align-items:stretch;
    gap: 14px;
  }
  .content-grid,
  .feature-list,
  .benefit-list,
  .usp-icons,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-links a { padding: 7px 2px; font-size: 0.91rem;}
  .testimonial-card, .feature, .service-card, .project-desc, .card {
    min-width: 95px;
    padding:16px 10px;
  }
  .section,
  .section.section {
    padding: 28px 4px;
    margin-bottom: 30px;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap:10px; padding:16px 7px; }
  .cookie-banner .cookie-actions { width:100%; gap:6px; }
  .text-image-section { flex-direction: column; gap:17px;}
}
@media (max-width:510px) {
  .cookie-modal { padding:18px 6px 24px 6px; min-width: 90vw; }
}

/* SUBTLE ANIMATIONS & EFFECTS =============== */
.card, .feature, .service-card, .testimonial-card, .project-desc, .accordion-item, .faq-item {
  transition: box-shadow .21s, transform .19s, background .16s;
}
a, button, .cta, .cookie-btn {
  transition: color .18s, background .2s, box-shadow .16s, transform .12s;
}

/* COLORS: vibrant energetic accent tweaks */
h1, h3, .service-price, .testimonial-author, .stars {
  color: #DAA520;
}
.cta, .cta.primary, .cookie-btn {
  background: #DAA520;
  color: #fff;
}
.cta:hover, .cta:focus, .cta.primary:hover, .cta.primary:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #FFC300;
  color: #253746;
}

/* MISC SPACING ENFORCEMENT ================ */
.card, .feature, .service-card, .testimonial-card, .project-desc {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .features-grid, .services-cards, .testimonials, .project-stories, .benefit-list, .usp-icons, .footer-links, .footer-contact {
  gap: 20px;
}


/* PRINT SUPPORT ======================= */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  .section, .container { box-shadow:none !important;background:none !important; }
}
