/* Crimson Steer - luxury_premium FLEXBOX CSS
--------------------------------------------------
RESET & BASE TYPOGRAPHY
-------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
body {
  background: #F7F6F1;
  color: #232537;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pnum";
}
img, video {
  max-width: 100%;
  height: auto;
}
a {
  color: #AF2238;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #b97c1b;
}
ul, ol {
  list-style: none;
}
section, main, nav, header, footer, address {
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #232537;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; margin-top: 20px; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.15rem; }
h5, h6 { font-size: 1rem; }
p, address, blockquote {
  color: #2D2E3C;
  margin-bottom: 16px;
  font-size: 1.06rem;
}
strong, b {
  font-weight: 700;
}
blockquote {
  border-left: 3px solid #c0a665;
  padding-left: 20px;
  font-style: italic;
  color: #AF2238;
}

/* ACCENT FONT COLOR */
.accent { color: #c0a665; }

/*--------------------------------------------------
LAYOUT: CONTAINER, SECTION, WRAPPER
--------------------------------------------------*/
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(35, 37, 55, 0.06), 0 1px 3px rgba(192, 166, 101, 0.08);
  border: 1.5px solid #f1ecd9;
  padding: 28px 28px 26px 28px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px rgba(175, 34, 56, 0.10), 0 2px 16px rgba(192, 166, 101, 0.17);
  border-color: #c0a665;
  z-index: 2;
}
.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;
  background: #fff;
  padding: 24px 28px;
  border-radius: 16px;
  border: 1.5px solid #ead7c0;
  box-shadow: 0 2px 16px rgba(175,34,56,.10);
  margin-bottom: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 280px;
  max-width: 480px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(175,34,56,0.13), 0 2px 16px rgba(192,166,101,0.12);
  border-color: #c0a665;
  z-index: 2;
}
.testimonial-highlight {
  background: #F7F6F1;
  border-color: #c0a665;
  box-shadow: 0 4px 28px rgba(192,166,101,0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 20px 22px;
  border: 1.5px solid #f1ecd9;
  box-shadow: 0 2px 13px rgba(35,37,55,0.04);
  margin-bottom: 20px;
  min-width: 220px;
  transition: border-color 0.23s, box-shadow 0.23s;
}
.feature-item img {
  width: 38px;
  height: auto;
}
.feature-item:hover {
  border-color: #c0a665;
  box-shadow: 0 7px 25px rgba(175,34,56,0.09);
}
.feature-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 11px;
  padding: 20px 18px 16px 20px;
  border: 1.5px solid #f1ecd9;
  margin-bottom: 22px;
  min-width: 195px;
  transition: border-color 0.22s, box-shadow 0.18s;
}
.value-item img {
  height: 36px; width: 36px;
}
.value-item:hover {
  border-color: #c0a665;
}

/*--------------------------------------------------
NAVIGATION & HEADER
--------------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(35,37,55,0.067);
  border-bottom: 2px solid #c0a66513;
  position: relative;
  z-index: 30;
}
.main-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 18px;
}
.main-navigation > a img {
  height: 48px;
  width: auto;
  display: block;
}
.main-navigation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-navigation ul li {
  margin: 0 2px;
}
.main-navigation ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #232537;
  padding: 9px 15px;
  border-radius: 7px;
  transition: background 0.16s, color 0.17s;
  position: relative;
}
.main-navigation ul li a:hover:not(.primary-cta),
.main-navigation ul li a:focus:not(.primary-cta) {
  background: #AF2238;
  color: #fff !important;
}
.primary-cta {
  background: #AF2238;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(175,34,56,.12);
  padding: 11px 24px;
  font-size: 1.08rem;
  transition: background 0.20s, box-shadow 0.22s, color 0.2s;
  letter-spacing: 0.015em;
  border: 1.5px solid #c0a6653c;
}
.primary-cta:hover, .primary-cta:focus {
  background: #c0a665;
  color: #232537 !important;
  border-color: #AF2238;
  box-shadow: 0 4px 18px #c0a66544;
}
.secondary-cta {
  background: #fff;
  color: #AF2238;
  border: 1.5px solid #AF2238;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  padding: 11px 22px;
  font-size: 1.02rem;
  transition: background 0.20s, box-shadow 0.22s, color 0.2s, border 0.18s;
  letter-spacing: 0.010em;
  margin-top: 12px;
  box-shadow: 0 1px 4px rgba(35,37,55, 0.04) ;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #AF2238;
  color: #fff;
  border-color: #c0a665;
}

/*--------------------------------------------------
MOBILE MENU
--------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #AF2238;
  color: #fff;
  font-size: 2.3rem;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  margin-left: 10px;
  z-index: 112;
  position: relative;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #c0a665;
  color: #232537;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 90px 20px #AF223855;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.84,.01,.26,.93);
  padding: 24px 28px 24px 18px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #232537;
  color: #fff;
  font-size: 2rem;
  border-radius: 48px;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #c0a66522;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #c0a665;
  color: #232537;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: #232537;
  padding: 12px 6px;
  border-radius: 6px;
  transition: background 0.14s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #AF2238;
  color: #fff;
}

/*--------------------------------------------------
RESPONSIVE DESIGN
--------------------------------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .main-navigation ul {
    gap: 11px;
  }
}
@media (max-width: 940px) {
  .main-navigation ul {
    gap: 8px;
  }
  .feature-grid, .values-grid {
    gap: 17px;
  }
  .primary-cta, .secondary-cta {
    font-size: 1rem;
  }
}
@media (max-width: 830px) {
  .feature-item, .value-item { min-width: 160px; }
}
@media (max-width: 768px) {
  .main-navigation ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-navigation {
    padding: 14px 10px;
  }
  .container {
    padding: 0 6px;
  }
  .feature-grid, .values-grid {
    flex-direction: column;
    gap: 19px;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 5px 30px 5px;
  }
  .testimonial-card { max-width: 97vw; }
  .content-wrapper { gap: 17px; }
  .card-container, .content-grid {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.22rem; }
  .primary-cta, .secondary-cta { font-size: 0.99rem; padding: 10px 13px; }
}

/*--------------------------------------------------
HERO SECTIONS, SERVICE TEASERS
--------------------------------------------------*/
.hero, section:first-of-type {
  background: #fff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 3px 40px 0 #c0a66513;
  margin-bottom: 60px;
}
.services-list,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 18px 0 18px 0;
}
.services-list li, .service-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px #23253708;
  border: 1px solid #c0a6653b;
  padding: 20px 23px 17px 18px;
  color: #2D2E3C;
  transition: border-color .17s, box-shadow .20s;
}
.services-list li span, .service-list li .price {
  color: #b97c1b;
  font-weight: 700;
  margin-left: 6px;
  font-size: 1.02rem;
}
.services-list li:hover, .service-list li:hover {
  box-shadow: 0 4px 18px #c0a66533, 0 2px 12px #AF22381a;
  border-color: #AF2238;
}
.highlighted-service {
  margin-top: 18px;
  background: #F7F6F1;
  border: 1px solid #c0a6656e;
  border-radius: 9px;
  padding: 17px 18px 10px 17px;
}
.highlighted-service h3 {
  font-size: 1.1rem;
  color: #AF2238;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.highlighted-service ul {
  margin-left: 18px;
  margin-bottom: 3px;
}
.highlighted-service li {
  list-style: disc;
  color: #232537;
  font-size: 1.01rem;
  line-height: 1.5;
  margin-bottom: 6px;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.articles-list article {
  background: #fff;
  border-radius: 9px;
  border: 1.5px solid #F7F6F1;
  box-shadow: 0 1.5px 18px #23253713;
  padding: 23px 23px 18px 20px;
  transition: border-color 0.19s, box-shadow 0.22s;
}
.articles-list article:hover {
  border-color: #c0a665;
  box-shadow: 0 4px 26px #c0a66518;
}
.articles-list h2 {
  font-size: 1.19rem;
  margin-bottom: 6px;
}

.categories-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.categories-filter ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.categories-filter li {
  background: #c0a66516;
  color: #b97c1b;
  font-weight: 600;
  border-radius: 5px;
  padding: 5px 11px;
  font-size: 0.98rem;
}

/*--------------------------------------------------
TESTIMONIALS/SLIDER
--------------------------------------------------*/
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
@media (max-width: 830px) {
  .testimonials-slider {
    flex-direction: column;
    gap: 14px;
  }
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  color: #232537;
}
.testimonial-card span {
  color: #b97c1b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/*--------------------------------------------------
TEXT/IMAGE/ABOUT SECTIONS
--------------------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 15px 2px;
  color: #232537;
  font-size: 1.08rem;
}
.text-section.contact-info-note {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 1.5px 12px #e0d3b2;
  border: 1.5px solid #f1ecd9;
  padding: 19px 16px 13px 16px;
  margin-top: 18px;
}

/*--------------------------------------------------
FOOTER
--------------------------------------------------*/
footer {
  background: #232537;
  color: #fff;
  padding: 0;
  margin-top: 56px;
  border-top: 3px solid #c0a6653c;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 38px 12px 24px 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-menu a {
  color: #c0a665;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  transition: color 0.17s;
  border-radius: 6px;
  padding: 2px 7px;
}
.footer-menu a:hover {
  color: #F7F6F1;
  background: #b97c1b;
}
.footer-logo {
  flex: 1 1 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  width: 57px;
  height: auto;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #fff;
}
.contact-short address {
  font-style: normal;
  color: #fff;
}
@media (max-width: 780px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
}

/*--------------------------------------------------
COOKIE CONSENT BANNER & POPUP
--------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #232537;
  border-top: 2.5px solid #c0a665;
  box-shadow: 0 -4px 28px #c0a66522;
  z-index: 200;
  padding: 26px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieBannerFadeIn 0.6s cubic-bezier(.83,.01,.3,.97);
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: 1.5px solid #c0a665;
  background: #fff;
  color: #b97c1b;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 6px;
  transition: background 0.14s, color 0.15s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #c0a665;
  color: #232537;
  border-color: #AF2238;
  box-shadow: 0 2px 10px #c0a66522;
}
.cookie-btn.reject {
  background: #fff;
  color: #B30025;
  border-color: #B30025;
}
.cookie-btn.settings {
  background: #fff;
  color: #b97c1b;
  border-color: #c0a665;
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(0.96);
  background: #f3e8c0;
  outline: 2px solid #c0a66566;
}
.cookie-btn.accept:focus, .cookie-btn.accept:hover {
  background: #AF2238;
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1300;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(35, 37, 55, .62);
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay .29s;
}
@keyframes fadeInOverlay{
  from{opacity:0;} to{opacity:1;}
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 42px #AF223822;
  padding: 37px 30px 29px 30px;
  min-width: 310px;
  max-width: 96vw;
  color: #232537;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  animation: cookieModalSlideIn .33s cubic-bezier(.84,.01,.26,.93);
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@keyframes cookieModalSlideIn {
  from { opacity: 0; transform: translateY(90px) scale(0.93); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.31rem;
  color: #AF2238;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 3px;
}
.cookie-category {
  background: #f3f3ed;
  border: 1.5px solid #c0a66548;
  border-radius: 7px;
  padding: 12px 12px 9px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.02rem;
  color: #232537;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #AF2238;
}
.cookie-category.disabled label {
  color: #b8b8b8;
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
  margin-top: 18px;
}
.cookie-close-btn {
  background: #232537;
  color: #fff;
  border-radius: 50%;
  width: 30px; height: 30px;
  position: absolute;
  right: 15px; top: 15px;
  transition: background 0.19s;
}
.cookie-close-btn:focus, .cookie-close-btn:hover {
  background: #c0a665;
  color: #232537;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.97rem;
    gap: 13px;
    padding: 18px 6px 11px 7px;
  }
  .cookie-modal {
    padding: 17px 7px 16px 7px;
  }
}

/*--------------------------------------------------
UTILITIES, ADJUSTMENTS, SCROLLBAR
--------------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #f3f3ed;
}
::-webkit-scrollbar-thumb {
  background: #ead7c0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c0a665;
}

hr {
  border: none;
  border-bottom: 1.5px solid #c0a6653b;
  margin: 32px 0;
}

button:focus-visible, a:focus-visible, .primary-cta:focus-visible, .secondary-cta:focus-visible {
  outline: 2.5px solid #c0a665;
  outline-offset: 1.5px;
}

/* LINING ACCENT COLOR */
.c0a665 { color: #c0a665; }

/* FORM FIELDS (future extension) */
input, textarea, select {
  border: 1.5px solid #c0a66555;
  border-radius: 7px;
  padding: 9px 11px;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  margin-bottom: 9px;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #c0a665;
  outline: none;
}

/* Z-INDEX SAFEGUARD */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 110; }

/*--------------------------------------------------
END
--------------------------------------------------*/
