/* ================================
   CSS RESET & BASE STYLES
================================== */
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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FAFAFA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9F6F2;
  color: #2B323A;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B28C5D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #96713b;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2B323A;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 600;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #414141;
}
strong {
  font-weight: 700;
  color: #2B323A;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFFDD;
  border-radius: 24px;
  box-shadow: 0 6px 30px rgba(210,180,200,0.09);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================================
   SOFT PASTEL BRAND COLORS
================================== */
:root {
  --color-primary: #2B323A;
  --color-secondary: #B28C5D;
  --color-accent: #F5F4F1;
  --color-pastel-blue: #DFE7EF;
  --color-pastel-peach: #FFEEDF;
  --color-pastel-mint: #E8F7F2;
  --color-pastel-pink: #F8DEE9;
  --color-pastel-lav: #EAEAF8;
  --color-white: #fff;
  --color-light-grey: #F7F7F7;
  --color-shadow: rgba(180, 170, 160, 0.08);
}

/* ================================
   FLEXBOX LAYOUTS & STRUCTURE
================================== */
.hero {
  background: linear-gradient(180deg, #FFEEDF 0% 70px, #EAEAF8 90%);
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 320px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-secondary);
  letter-spacing: 0.8px;
}
.hero p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  flex: 1 1 200px;
  min-width: 220px;
  background: var(--color-pastel-peach);
  border-radius: 20px;
  box-shadow: 0 3px 16px var(--color-shadow);
  padding: 28px 20px 22px 20px;
  text-align: center;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.feature img {
  width: 44px;
  margin-bottom: 10px;
}
.feature:hover, .feature:focus {
  box-shadow: 0 8px 32px rgba(210,180,200,0.15);
  transform: translateY(-2px) scale(1.03);
}
.service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  flex: 1 1 220px;
  background: var(--color-pastel-mint);
  border-radius: 18px;
  box-shadow: 0 2px 13px var(--color-shadow);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.service-item h3 {
  color: var(--color-secondary);
  font-weight: 600;
}
.service-item:hover {
  box-shadow: 0 5px 24px rgba(210,180,200,0.12);
  transform: translateY(-2px) scale(1.025);
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 14px;
}
.step {
  flex: 1 1 200px;
  background: var(--color-pastel-blue);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 24px 18px 16px 18px;
  margin-bottom: 20px;
  text-align: center;
  transition: box-shadow 0.16s, transform 0.13s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.step img {
  width: 40px;
  margin-bottom: 6px;
}
.step:hover {
  box-shadow: 0 8px 28px rgba(170,140,160,0.14);
  transform: translateY(-2px) scale(1.025);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.category-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: column;
}
.project-briefs, .case-study-intro {
  margin-top: 24px;
}
.case-study-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}
.project {
  flex: 1 1 220px;
  background: var(--color-pastel-peach);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 18px 18px 14px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.17s, transform 0.12s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project h3 {
  color: var(--color-secondary);
}
.project:hover {
  box-shadow: 0 10px 34px rgba(210,180,200,.14);
  transform: translateY(-2px) scale(1.025);
}
.location-data, .contact-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.location-data ul, .contact-data ul {
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 1px 6px var(--color-shadow);
  padding: 16px 16px 12px 16px;
  transition: box-shadow .2s, transform .18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover {
  box-shadow: 0 5px 14px rgba(160,140,180,0.10);
  transform: translateY(-2px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.visitor-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.opening-hours {
  padding: 8px 0;
  font-size: 1rem;
  color: #444;
}

/* ================================
   TESTIMONIALS & REVIEWS
================================== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7FAFE;
  border-radius: 17px;
  box-shadow: 0 2px 14px var(--color-shadow);
  color: #2B323A;
  font-style: italic;
  min-width: 230px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  transition: box-shadow 0.17s, transform 0.14s;
}
.testimonial-card p {
  color: #2B323A;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-style: normal;
  color: #84776C;
  font-size: .97rem;
  margin-top: 0;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(110,150,170,0.10);
  transform: translateY(-2px) scale(1.02);
}

/* ================================
   BUTTONS, CTA & LINKS
================================== */
.cta-primary, .cta-primary:visited {
  display: inline-block;
  padding: 13px 34px;
  background: linear-gradient(90deg, #F8DEE9 0%, #E8F7F2 60%, #FFEEDF 100%);
  color: #2B323A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px var(--color-shadow);
  font-size: 1.12rem;
  letter-spacing: 0.7px;
  text-align: center;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.17s, transform 0.17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #E8F7F2 0%, #F8DEE9 100%);
  color: #B28C5D;
  box-shadow: 0 8px 28px rgba(180,140,160,0.12);
  transform: scale(1.03);
  outline: none;
}
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 28px;
  border: none;
  background: var(--color-pastel-lav);
  color: var(--color-primary);
  cursor: pointer;
  transition: background 0.16s, color 0.12s, box-shadow 0.16s;
  box-shadow: 0 1px 4px var(--color-shadow);
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: var(--color-pastel-mint);
  color: var(--color-secondary);
  outline: none;
}

/* ============== Navigation ============== */
header {
  background: #fff;
  box-shadow: 0 1px 10px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0 16px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.main-nav img {
  height: 34px;
  margin-right: 20px;
  vertical-align: middle;
}
.main-nav a.cta-primary {
  margin-left: 14px;
  padding: 9px 23px;
  background: linear-gradient(90deg, #FFEEDF 0%, #E8F7F2 100%);
  color: var(--color-primary);
  box-shadow:none;
  font-size: 1rem;
  border-radius: 18px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-pastel-peach);
  color: #B28C5D;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin-left: auto;
  cursor: pointer;
  z-index: 301;
  transition: color 0.15s;
  padding: 5px 16px 5px 12px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(249,246,242, 0.98);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.7,0,0.2,1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 25px;
  box-shadow: 4px 0 32px rgba(185,180,200,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-secondary);
  position: absolute;
  top: 24px;
  right: 22px;
  cursor: pointer;
  z-index: 310;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding: 62px 26px 24px 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #4C4942;
  padding: 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-pastel-peach);
  color: var(--color-secondary);
  outline: none;
}

/* Hide main-nav on mobile, show hamburger */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================
   FOOTER
================================== */
footer {
  margin-top: 48px;
  background: var(--color-pastel-blue);
  padding: 34px 0 18px 0;
  border-top: 2px solid #EEECEB;
  box-shadow: 0 -1px 6px var(--color-shadow);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  font-size: 1.01rem;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--color-primary);
  transition: color 0.12s;
  padding: 3px 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #89756A;
  font-size: 0.98rem;
  margin-top: 10px;
  opacity: 0.86;
}
.footer-branding img {
  height: 32px;
  margin-bottom: 3px;
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--color-pastel-peach);
  color: var(--color-primary);
  box-shadow: 0 -5px 22px rgba(200,128,150,0.13);
  padding: 22px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  z-index: 1200;
  font-size: 1.04rem;
  transition: transform 0.33s cubic-bezier(0.7,0,0.2,1), opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: var(--color-pastel-mint);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.16s, transform 0.12s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--color-pastel-lav);
  color: var(--color-secondary);
  transform: scale(1.04);
}
.cookie-btn-reject {
  background: var(--color-pastel-pink);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.15s, transform 0.12s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--color-pastel-lav);
  color: var(--color-secondary);
  transform: scale(1.04);
}
.cookie-btn-settings {
  background: var(--color-pastel-lav);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--color-pastel-blue);
  color: var(--color-secondary);
  transform: scale(1.03);
}
/* Cookie Modal (Preferences) */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(160,160,180,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: var(--color-pastel-lav);
  border-radius: 20px;
  max-width: 420px;
  width: 92vw;
  padding: 34px 22px 24px 22px;
  box-shadow: 0 6px 30px rgba(170,160,210,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1310;
  animation: modalIn .22s cubic-bezier(.7,0,.24,1);
}
@keyframes modalIn {
  from {transform: translateY(60px) scale(0.9); opacity:0;}
  to {transform: translateY(0) scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 10px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1.02rem;
  color: #2B323A;
  cursor: pointer;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  background: var(--color-pastel-mint);
  border-radius: 12px;
  position: relative;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  transition: background 0.15s;
}
.cookie-modal .cookie-switch input[type=checkbox]{
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  top: 3px; left: 4px;
  width: 16px; height: 16px;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: left 0.15s, background 0.17s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  left: 18px;
  background: var(--color-primary);
}
.cookie-modal .cookie-category.essential label {
  cursor: not-allowed;
  color: #999;
}
.cookie-modal .cookie-category.essential .cookie-switch, .cookie-modal .cookie-category.essential .cookie-slider {
  background: #E6E6E6;
  pointer-events:none;
}
.cookie-modal .cookie-category.essential .cookie-slider {
  background: #BBB;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
}

/* ================================
   RESPONSIVE & MEDIA QUERIES
================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-grid, .process-steps, .case-study-summaries, .testimonial-slider, .testimonial-list, .content-grid, .card-container {
    gap: 16px;
  }
  .feature, .service-item, .step, .project, .testimonial-card {
    min-width: 180px;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section {
    padding: 24px 8px;
  }
  .feature-grid, .service-list, .service-grid, .case-study-summaries, .process-steps, .testimonial-slider, .testimonial-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .service-item, .step, .project, .testimonial-card {
    min-width: 0;
    width: 100%;
    margin-bottom: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    gap: 14px;
    font-size: 0.95rem;
    flex-direction: column;
    align-items: center;
  }
  .footer-branding {
    font-size: 0.91rem;
  }
}
@media (max-width: 470px) {
  .cookie-modal {
    padding: 20px 4px 12px 4px;
  }
}

/* ================================
   MICRO-INTERACTIONS/ANIMATIONS
================================== */
.cta-primary, .feature, .service-item, .step, .project, .card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.14s, background 0.18s;
}
button, .btn {
  transition: background 0.16s, color 0.13s, box-shadow 0.16s;
}

/* ================================
   ACCESSIBILITY/FOCUS STATES
================================== */
a:focus, button:focus, .cta-primary:focus, .cookie-btn-accept:focus, .cookie-btn-reject:focus, .cookie-btn-settings:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Remove number arrows in forms if used */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin:0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* ================================
   SCROLLBAR FOR SMOOTH PASTEL UI
================================== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--color-pastel-lav);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-pastel-peach);
  border-radius: 6px;
  transition: background 0.18s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-pastel-mint);
}

/* ================================
   OVERRIDES/UTILITY
================================== */
.bg-accent {
  background: var(--color-accent) !important;
}
.bg-pastel-mint {
  background: var(--color-pastel-mint) !important;
}
.bg-pastel-blue {
  background: var(--color-pastel-blue) !important;
}
.bg-pastel-pink {
  background: var(--color-pastel-pink) !important;
}
.text-secondary {
  color: var(--color-secondary)!important;
}
.text-accent {
  color: var(--color-accent)!important;
}
.shadow {
  box-shadow: 0 3px 13px var(--color-shadow) !important;
}
.rounded-xl {
  border-radius: 20px !important;
}

/* ================================
   FONT IMPORT (Web Safe)
================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');
