/* RESET & BASELINE ------------------------ */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #191c1e;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F7F7F7;
  font-size: 16px;
  letter-spacing: 0.02em;
  background-color: #191c1e;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: transparent;
  border: none;
}
input::placeholder, textarea::placeholder {
  color: #575B5E;
  opacity: 1;
}
h1, h2, h3, h4, h5, h6 {
  color: #F7F7F7;
  font-family: 'Montserrat', 'Arial Black', Impact, sans-serif;
  letter-spacing: 0.02em;
}

/* INDUSTRIAL MODERN BRAND COLORS */
:root {
  --primary: #19513A;
  --secondary: #D68F4A;
  --accent: #F7F7F7;
  --bg-dark: #191c1e;
  --surface: #232627;
  --surface-light: #2b2f31;
  --metal: #babdbf;
  --shadow: rgba(21,21,25,.10);
  --border-metal: #73787a;
}

/* FLEX CONTAINERS ---------------------------- */
.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* SECTIONS & SPACING ------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface-light);
  border: 1px solid var(--border-metal);
  border-radius: 8px;
  box-shadow: 0 1px 6px var(--shadow);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px 0 rgba(156,158,163,.20);
  border-color: var(--secondary);
}
.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;
}

/* HERO SECTION ------------------------------- */
.hero {
  background: linear-gradient(120deg, #232627 70%, #19513A 100%);
  padding: 64px 0 40px 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 32px 0 var(--shadow);
  margin-bottom: 38px;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  text-shadow: 1px 1px 12px #191c1e80;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero .cta-button {
  margin-top: 10px;
}

/* HEADER & NAVIGATION ------------------------ */
header {
  background: var(--surface);
  border-bottom: 2px solid var(--border-metal);
  position: relative;
  box-shadow: 0 1px 4px var(--shadow);
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  padding: 8px 10px;
  color: var(--accent);
  border-radius: 4px;
  position: relative;
  transition: color .15s, background .15s;
}
header nav a:hover, header nav a.active {
  background: var(--secondary);
  color: #191c1e;
}
.cta-button {
  background: var(--secondary);
  color: #191c1e;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 13px 28px;
  margin-left: 14px;
  box-shadow: 0 2px 10px var(--shadow);
  letter-spacing: 0.01em;
  border: 1.5px solid var(--secondary);
  cursor: pointer;
  transition: background .2s, color .2s, border .2s, box-shadow .2s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  box-shadow: 0 4px 14px 0 rgba(215,163,97,0.10);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 3px;
  transition: background .18s;
}
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: #191c1e;
}

/* MOBILE NAVIGATION -------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom right, #191c1e 93%, #232627 100%);
  box-shadow: 0 10px 32px var(--shadow);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.6,.23,.38,1.04), opacity .2s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  padding: 4px 8px;
  border-radius: 3px;
  transition: background .18s;
  z-index: 1202;
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: #191c1e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 50px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--accent);
  padding: 12px 6px 12px 0;
  border-bottom: 1px solid var(--border-metal);
  width: 100%;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--secondary);
  background: var(--surface-light);
  border-radius: 4px 14px 14px 4px;
}

/* MAIN BUTTONS, FILTERS & SEARCH -------------- */
.search-bar, .blog-search {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-light);
  border-radius: 7px;
  padding: 8px 12px;
  box-shadow: 0 1px 4px 0 var(--shadow);
  margin-bottom: 8px;
  width: 100%;
  max-width: 410px;
}
.search-bar input, .blog-search input {
  flex: 1;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1rem;
  padding: 8px 0 8px 4px;
}
.search-bar button, .blog-search button {
  background: var(--secondary);
  color: #191c1e;
  border: none;
  border-radius: 4px;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 9px 16px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.search-bar button:hover, .blog-search button:hover {
  background: #ba6f25;
  color: #fff;
}
.category-filters, .season-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.category-filters button, .season-selector button {
  background: var(--surface-light);
  color: var(--accent);
  border: 1.2px solid var(--border-metal);
  border-radius: 5px;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: background .18s, color .18s, border-color .18s;
}
.category-filters button:hover, .category-filters button.active,
.season-selector button:hover, .season-selector button.active {
  background: var(--secondary);
  color: #191c1e;
  border-color: var(--secondary);
}
.quick-links {
  display: flex;
  gap: 14px;
  margin: 16px 0 0 0;
  font-size: 1rem;
}
.quick-links a {
  color: var(--secondary);
  font-weight: 600;
  transition: text-decoration .14s, color .14s;
}
.quick-links a:hover {
  text-decoration: underline;
  color: #ffab59;
}

/* FEATURE GRID, TEAM BIOS, TAGS --------------- */
.feature-grid, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid > div, .team-bios > div {
  background: var(--surface-light);
  border-radius: 9px;
  border: 1.5px solid var(--border-metal);
  box-shadow: 0 1px 8px var(--shadow);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: border-color .17s, box-shadow .17s;
}
.feature-grid > div:hover, .team-bios > div:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(214,143,74,.12);
}
.category-tags {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
}
.category-tags span {
  background: var(--metal);
  color: #191c1e;
  border-radius: 4px;
  padding: 3px 13px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* TESTIMONIALS (CARDS, QUOTES, STARS) --------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ECECEC;
  color: #232627;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(25,25,30,.07);
  min-width: 220px;
  border: 1.2px solid #d9d9d9;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card p {
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: #232627;
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.99rem;
  color: #6C757D;
  font-style: normal;
}
.testimonial-card img {
  height: 1.2em;
  filter: grayscale(80%) drop-shadow(0px 1px 2px #c3c3c3c4);
}

/* CARDS --------------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* FOOTER -------------------------- */
footer {
  background: var(--surface);
  border-top: 2px solid var(--border-metal);
  padding: 0;
  margin: 0;
  color: var(--accent);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 0 16px;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-main nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-size: 1rem;
  padding: 7px 6px;
  border-radius: 3px;
  transition: background .14s, color .14s;
}
.footer-main nav a:hover {
  background: var(--metal);
  color: #191c1e;
}
.footer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #d9dadb;
  padding-top: 2px;
}
.footer-details div {
  display: flex;
  align-items: center;
  gap: 7px;
}
footer img {
  filter: grayscale(.7) brightness(1.15);
  height: 32px;
}


/* TYPOGRAPHY SCALE ---------------------------- */
h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--secondary);
}
h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
h3 {
  font-size: 1.28rem;
  font-weight: 600;
}
h4 {
  font-size: 1.14rem;
  font-weight: 500;
}
strong {
  font-weight: 600;
  color: var(--secondary);
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  letter-spacing: 0.01em;
}
p, li {
  font-size: 1rem;
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
}
ul li + li {
  margin-top: 7px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 10px;
}

/* Thank You Section --------------------------- */
.thank-you-section {
  margin-top: 66px;
  margin-bottom: 66px;
  background: linear-gradient(120deg, #232627 88%, #19513A 100%);
  border-radius: 12px;
  box-shadow: 0 5px 24px var(--shadow);
  padding: 54px 0;
}
.thank-you-section h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

/* UTILITY CLASSES & SPACING ------------------- */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.gap-4 { gap: 32px; }

/* Responsive Media Queries -------------------- */
@media (max-width: 1020px) {
  header .container {
    gap: 10px;
  }
  .feature-grid, .team-bios, .footer-details {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div, .team-bios > div {
    min-width: 175px;
    flex: 1 1 190px;
    padding: 18px 12px;
  }
  .footer-details {
    font-size: 0.97rem;
    gap: 9px 9px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-main {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .feature-grid, .team-bios {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    padding: 40px 0 18px 0;
    border-radius: 0 0 12px 12px;
  }
  .thank-you-section {
    padding: 36px 0;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.45rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .footer-main img, footer img {
    height: 26px;
    width: auto;
  }
}

/* Micro-interactions & Transitions ------------ */
a, button, .cta-button, .feature-grid > div, .card, .team-bios > div
{ transition: background .2s, color .15s, border .15s, box-shadow .18s;
}
input, textarea {
  transition: box-shadow .18s, border .18s;
}

/* Cookie Consent Banner ----------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw; max-width: 100%;
  padding: 18px 18px 13px 18px;
  background: var(--surface-light);
  color: var(--accent);
  box-shadow: 0 -2px 20px var(--shadow);
  border-top: 2.5px solid var(--metal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1400;
  font-size: 1.07rem;
  animation: cookie-slide-in 0.5s;
}
@keyframes cookie-slide-in {
  from { transform: translateY(150%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-btns {
  display: flex;
  align-items: center;
  gap: 9px;
}
#cookie-banner button {
  background: var(--secondary);
  color: #191c1e;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 14px;
  margin-left: 0;
  cursor: pointer;
  transition: background .18s, color .18s;
  box-shadow: 0 1px 4px var(--shadow);
}
#cookie-banner button:active {
  background: #b87732;
}
#cookie-banner button.settings-btn {
  background: var(--surface);
  color: var(--accent);
  border: 1.2px solid var(--border-metal);
}
#cookie-banner button.settings-btn:hover, #cookie-banner button:focus {
  background: var(--secondary);
  color: #191c1e;
  border-color: var(--secondary);
}
#cookie-banner.hidden { display: none; }

/* Cookie Modal Styles ------------------------- */
#cookie-modal-overlay {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,39,39, 0.77);
  z-index: 1402;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
#cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
#cookie-modal {
  min-width: 304px;
  max-width: 96vw;
  background: var(--surface-light);
  color: var(--accent);
  border-radius: 14px;
  box-shadow: 0 8px 32px 0 var(--shadow);
  padding: 30px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1403;
  position: relative;
  animation: cookie-modal-in 0.32s;
}
@keyframes cookie-modal-in {
  from { transform: translateY(60px) scale(.94); opacity: .45 }
  to { transform: translateY(0) scale(1); opacity: 1 }
}
#cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.36rem;
  margin-bottom: 12px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
#cookie-modal .switch {
  width: 38px;
  height: 22px;
  border-radius: 16px;
  background: var(--metal);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background .18s;
}
#cookie-modal .switch input {
  display: none;
}
#cookie-modal .slider {
  position: absolute;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 var(--shadow);
  transition: left .18s, background .18s;
}
#cookie-modal .switch input:checked ~ .slider {
  left: 19px;
  background: var(--secondary);
}
#cookie-modal .switch input:checked ~ .slider {
  box-shadow: 0 2.5px 5px rgba(214,143,74,.22);
}
#cookie-modal .cookie-category.essential .switch {
  background: #50a376;
  cursor: not-allowed;
  opacity: .7;
}
#cookie-modal .cookie-category.essential .slider {
  background: #fafcfa;
}
#cookie-modal .cookie-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 12px;
  font-size: 1.65rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  border-radius: 4px;
  transition: background .16s, color .16s;
}
#cookie-modal .close-modal:hover {
  background: var(--secondary);
  color: #191c1e;
}
#cookie-modal .modal-btn {
  background: var(--secondary);
  color: #191c1e;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .14s, color .14s;
}
#cookie-modal .modal-btn:active {
  background: #b87732;
}
#cookie-modal .modal-btn.transparent {
  background: var(--surface);
  color: var(--accent);
  border: 1.2px solid var(--border-metal);
}
#cookie-modal .modal-btn.transparent:hover {
  background: var(--secondary);
  color: #191c1e;
  border-color: var(--secondary);
}

/* Hide cookie modal & banner when dismissed */
#cookie-modal-overlay.hidden,
#cookie-modal.hidden,
#cookie-banner.hidden { display: none !important; }

/* CONTACT INFO IN HERO ----------------------- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 4px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-light);
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 1rem;
  color: var(--secondary);
  box-shadow: 0 1px 4px var(--shadow);
}
.contact-info img {
  height: 1.2em;
  margin-right: 3px;
}

/* Utility metallic accent lines --------------- */
hr, .divider {
  border: 0;
  border-top: 1.3px solid var(--metal);
  margin: 30px 0;
}

/* Scrollbar Styling --------------------------- */
::-webkit-scrollbar {
  width: 11px;
  background: #232627;
}
::-webkit-scrollbar-thumb {
  background: var(--metal);
}

/* END */
