/* --- 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,
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 {
  min-height: 100vh;
  background: #232931;
  color: #F6F6F2;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
button {
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
:focus {
  outline: 2px solid #05FFC5;
  outline-offset: 2px;
}

/* --- VARIABLE FALLBACKS --- */
:root {
  --primary: #2E5948;
  --primary-dark: #223c2c;
  --secondary: #D9B37C;
  --accent: #F6F6F2;
  --bg-dark: #232931;
  --surface: #28343E;
  --neon: #05FFC5;
  --danger: #FF4B4B;
  --body: 'Lato', Arial, sans-serif;
  --display: 'Montserrat', 'Lato', Arial, sans-serif;
}

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap');

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.header-container,
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer-container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  border-top: 1.5px solid #30444f;
  margin-top: 48px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Spacing in sections */
.section { margin-bottom: 60px; padding: 40px 20px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  color: #05FFC5;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--accent);
  text-shadow: 0 2px 12px #05ffc52c,0 1px 0 var(--primary);
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--secondary);
  text-shadow: 0 2px 10px #05ffc51a;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--neon);
  text-shadow: 0 1px 5px #05ffc533;
}
h4, h5, h6 {
  font-size: 1rem;
  color: var(--neon);
}
p {
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1.7;
}
strong { font-weight: 700; color: var(--secondary); }
.category {
  background: var(--surface);
  color: var(--neon);
  border-radius: 12px;
  padding: 6px 16px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  display: inline-block;
}

.policy-text ul, .policy-text ol {
  padding-left: 20px;
  margin-bottom: 24px;
  color: var(--accent);
}
.policy-text li {
  margin-bottom: 8px;
  list-style: disc;
  color: var(--accent);
}

/* --- HEADER & NAV --- */
header {
  background: var(--bg-dark);
  box-shadow: 0 2px 24px #05ffc51a, 0 1px 0 #1D2329;
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo-link img {
  height: 44px;
  width: auto;
  transition: filter .2s;
}
.logo-link:hover img {
  filter: drop-shadow(0 0 3px #05FFC5);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--display);
  color: var(--accent);
  font-size: 17px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .18s, color .18s, box-shadow .18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #05FFC511;
  color: #05FFC5;
  box-shadow: 0 1px 14px #05ffc522;
}
/* Call-to-action in header */
.cta.primary {
  background: linear-gradient(88deg, #2E5948 85%, #05FFC5 120%);
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 32px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 2px 16px #05ffc53d;
  text-shadow: 0 1px 2px #184228b8;
  margin-left: 10px;
  margin-right: 0;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  position: relative;
  letter-spacing: 0.04em;
  border: 2.5px solid #05FFC5;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #05FFC5;
  color: #132319;
  box-shadow: 0 4px 28px #05ffc599;
  border-color: #2E5948;
}

.cta.secondary {
  background: transparent;
  color: #05FFC5;
  border: 2px solid #05FFC5;
  padding: 10px 28px;
  border-radius: 26px;
  font-family: var(--display);
  font-size: 16px;
  transition: background .18s, color .18s, border-color .18s;
  box-shadow: 0 1px 8px #05ffc526;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #05FFC5;
  color: #132319;
  border-color: #2E5948;
}
.cta {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  letter-spacing: .02em;
  text-transform: none;
  box-shadow: 0 2px 8px #05ffc518;
  cursor: pointer;
  transition: box-shadow .2s;
}
.cta:active {
  box-shadow: 0 0 0;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  background: none;
  color: #05FFC5;
  border: none;
  margin-left: 14px;
  margin-right: 0;
  z-index: 50;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #05ffc522;
  color: #232931;
}
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232931;
  box-shadow: 2px 0 44px #05ffc51a;
  z-index: 1002;
  padding: 36px 32px 32px 32px;
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.7,.27,.32,.9), opacity .3s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 28px;
  background: none;
  color: #05FFC5;
  border: none;
  transition: color 0.2s;
  padding: 8px 10px;
  margin-bottom: 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FF4B4B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: 21px;
  color: #F6F6F2;
  padding: 10px 0;
  border-bottom: 1px solid #30444f6a;
  border-radius: 0;
  transition: color 0.15s, border-color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #05FFC5;
  border-color: #05FFC5;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {display:none !important;}
}

/* --- HERO --- */
.hero {
  background: linear-gradient(100deg, #2E5948 38%, #223d2c 110%);
  min-height: 340px;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 28px #05ffc518;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #fff;
  text-shadow: 0 2px 24px #05ffc540,0 1px 0 #2E5948;
}
.hero p {
  color: #d5f7fe;
  max-width: 700px;
  font-size: 1.15rem;
}

/* --- FLEXBOX LAYOUTS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 2px 18px #05ffc51a;
  padding: 28px 20px;
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .26s, transform .18s;
  border: 1.5px solid #2E594822;
}
.feature:hover,
.feature:focus-visible {
  box-shadow: 0 4px 34px #05ffc560, 0 0 0 2.5px #05FFC5AA;
  transform: translateY(-4px) scale(1.025);
}
.feature img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px #05FFC533);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.service-categories li {
  background: var(--surface);
  border-radius: 18px;
  min-width: 210px;
  flex: 1 1 220px;
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  border: 1.5px solid #2E594822;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: 0 2px 14px #05ffc515;
}
.service-categories li:hover {
  box-shadow: 0 2px 24px #05ffc52d;
  border-color: #05FFC5;
}
.service-categories img {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 7px #05FFC544);
}

.inspiration-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.inspiration-style-guide {
  background: var(--surface);
  border-radius: 16px;
  padding: 22px 16px 16px 16px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow .22s;
  box-shadow: 0 2px 16px #05ffc512;
}
.inspiration-style-guide:hover {
  box-shadow: 0 2px 22px #05ffc522;
}

.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 18px;
}
.blog-list li {
  background: var(--surface);
  border-radius: 18px;
  padding: 25px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px #05ffc512;
  border: 1.5px solid #2E594822;
  transition: box-shadow .15s;
}
.blog-list li:hover {
  box-shadow: 0 4px 38px #05ffc514;
}

.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
  margin-top: 10px;
}
.team-member {
  background: var(--surface);
  border-radius: 16px;
  padding: 22px 16px 16px 16px;
  min-width: 185px;
  flex: 1 1 320px;
  box-shadow: 0 2px 14px #05ffc525;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.return-home {
  margin-top: 32px;
}
.brand-philosophy {
  margin-top: 32px;
  background: var(--surface);
  border-radius: 15px;
  padding: 20px 16px 16px 16px;
  box-shadow: 0 1px 14px #05ffc526;
  margin-bottom: 20px;
}

/* --- TESTIMONIALS --- */

.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
}
.testimonial-card {
  background: #05FFC511;
  color: #232931;
  border-radius: 18px;
  padding: 20px 24px 18px 24px;
  box-shadow: 0 2px 18px #05ffc511;
  margin-bottom: 20px;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 250px;
  border: 1.6px solid #05FFC52f;
  transition: box-shadow .2s;
  position: relative;
  gap: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px #05ffc52a;
}
.testimonial-card p {
  color: #232931;
  margin-bottom: 0;
  font-size: 1.02rem;
}
.testimonial-author {
  font-family: var(--display);
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 8px;
}
.stars {
  color: #FFD600;
  font-size: 1.26em;
  margin-bottom: 2px;
}

/* --- FOOTER --- */
footer {
  background: var(--bg-dark);
  margin-top: 48px;
}
.footer-logo img {
  width: 48px; height: auto;
  filter: drop-shadow(0 0 7px #05FFC544);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #05FFC5;
  font-family: var(--display);
  font-size: 15px;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links a:focus { color: #FFD600; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact p {
  color: #c8f4e5;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.footer-contact img {
  width: 19px; height: 19px; filter: drop-shadow(0 0 4px #05FFC55c); margin-bottom: -3px;
}

/* --- POLICY PAGES --- */
.policy-text {
  background: var(--surface);
  border-radius: 18px;
  padding: 36px 20px;
  box-shadow: 0 2px 16px #05ffc512;
  color: var(--accent);
}
.policy-text h1, .policy-text h2 { color: #05FFC5; }
.policy-text a { color: #05FFC5; text-decoration: underline; }
.policy-text a:hover { color: #FFD600; text-decoration: underline; }

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #232931f0;
  color: #F6F6F2;
  z-index: 2000;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 10px 26px 10px;
  box-shadow: 0 -3px 24px #05ffc518;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform .3s, opacity .3s;
  transform: translateY(130%);
  opacity: 0;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #F6F6F2;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  border: none;
  background: #05FFC5;
  color: #232931;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 1px 7px #05ffc520;
  transition: background .2s, color .2s, box-shadow .2s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #2E5948;
  color: #fff;
  box-shadow: 0 2px 18px #05FFC533;
}
.cookie-btn.settings {
  background: transparent;
  color: #05FFC5;
  border: 2px solid #05FFC5;
  transition: background .2s, color .2s, border .2s;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #05FFC5;
  color: #232931;
  border-color: #2E5948;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 2200;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%) scale(0.98);
  background: #232931fc;
  color: #F6F6F2;
  border-radius: 22px;
  box-shadow: 0 4px 54px #05ffc543;
  padding: 42px 36px 36px 36px;
  width: 95vw;
  max-width: 430px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s, transform .3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: #05FFC5;
  margin-bottom: 20px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 26px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category input[type='checkbox']{
  accent-color: #05FFC5;
  width: 20px; height: 20px;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #05FFC5;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 19px;
  right: 19px;
  font-size: 23px;
  color: #05FFC5;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover {
  color: #FF4B4B;
}

/* --- GENERAL CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 14px #05ffc515;
  transition: box-shadow .15s;
  padding: 22px 18px;
}
.card:hover {
  box-shadow: 0 2px 24px #05ffc522;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 990px) {
  .header-container, .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: left;
  }
  .container {
    max-width: 99%;
    padding-left: 7px;
    padding-right: 7px;
  }
  .hero {
    border-radius: 0 0 18px 18px;
    min-height: 230px;
  }
  .feature-grid, .testimonial-slider, .testimonial-list, .service-categories, .team-bios, .inspiration-blocks, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .hero .content-wrapper {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .mobile-menu {
    padding: 40px 12px 28px 12px;
  }
  .cookie-modal {
    padding: 28px 6vw 26px 6vw;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .section {
    padding: 24px 4vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  h1 { font-size: 1.62rem; }
  h2 { font-size: 1.22rem; }
  .hero h1 { font-size: 1.22rem; }

  .footer-links { flex-direction: column; gap: 7px; }
  .footer-contact p { font-size: 13px; }
}
@media (max-width: 420px) {
  .cookie-modal {
    padding:14px 3vw 12px 3vw;
  }
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
*, *:before, *:after {
  transition-property: background, color, box-shadow, border, transform, opacity;
  transition-duration: .18s;
  box-sizing: inherit;
}
input, textarea, select {
  border-radius: 8px;
}

/* --- SCROLLBAR --- */
body {
  scrollbar-width: thin;
  scrollbar-color: #05FFC5 #28343E;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #28343E;
}
body::-webkit-scrollbar-thumb {
  background: #05FFC5;
  border-radius: 9px;
}

/* --- SELECTION --- */
::selection{
  background: #05FFC5;
  color: #1B2227;
}

/* --- Misc --- */
a[href^='tel'],
a[href^='mailto'] {
  color: #05FFC5;
  text-decoration: underline;
  font-weight: 600;
}
a[href^='tel']:hover, a[href^='mailto']:hover { color: #FFD600; }

.return-home .cta.secondary {
  margin-top: 14px;
  font-size: 16px;
}

/* --- Error / Danger state --- */
.danger, .error {
  color: var(--danger);
  font-weight: bold;
}

/* --- SHADOW/NEON HIGHLIGHTS (Tech Futuristic Accent) --- */
.neon {
  color: #05FFC5 !important;
  text-shadow: 0 0 16px #05FFC5,0 0 6px #05FFC555;}

@media (hover: hover) and (pointer: fine) {
  .cta.primary:hover,
  .cta.secondary:hover { filter: brightness(1.08) saturate(1.12); }
  .feature:hover, .card:hover, .service-categories li:hover {
    filter: drop-shadow(0 0 14px #05FFC540);
  }
}
