/* ---------------------------------------------------
   CSS RESET & NORMALIZE (mobile-first, box-sizing)
-----------------------------------------------------*/
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #ffffff;
  color: #1C4727;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --brand-primary: #1C4727;
  --brand-secondary: #ffffff;
  --brand-accent: #F5B041;
  --luxury-gold: #E1C678;
  --luxury-dark: #212225;
  --luxury-bg: #F7F6F3;
  --luxury-text: #222;
  --luxury-soft: #EBE9E2;
  --shadow: 0 4px 20px 0 rgba(28,71,39,0.07);
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--luxury-gold); text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #b88a2d; text-decoration: underline; }
ul, ol { padding-left: 1.5em; }
section { width: 100%; }

/* ----------------- TYPOGRAPHY SCALE ------------------ */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.18;
  color: var(--luxury-dark);
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--luxury-dark);
}
h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; color: var(--luxury-dark); }
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--luxury-gold);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
p { margin-bottom: 1.25em; }
strong { font-weight: 600; color: var(--brand-primary); }


/* ------------ CONTAINER & GLOBAL SPACING ------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--luxury-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* ----------- LUXURY PREMIUM GLOBAL THEME ------------- */
body {
  background: var(--luxury-bg);
}
main {
  margin-top: 0;
  margin-bottom: 0;
}

/* -------------- HEADER & NAVIGATION ------------------ */
header {
  width: 100%;
  background: var(--brand-primary);
  box-shadow: 0 4px 14px 0 rgba(34,34,34,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--luxury-gold);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background .18s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  text-decoration: none;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--luxury-gold);
  font-size: 2.0rem;
  padding: 8px 15px;
  margin-left: 22px;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: background .17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(220, 172, 74, 0.12);
  outline: none;
}

@media (min-width: 992px) {
  .mobile-menu-toggle { 
    display: none;
  }
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

/* --------------- MOBILE MENU OVERLAY ----------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,34,34,0.93);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--luxury-gold);
  font-size: 2.2rem;
  margin: 24px 0 0 18px;
  align-self: flex-start;
  cursor: pointer;
  border-radius: 6px;
  padding: 7px 16px;
  transition: background .15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(245, 176, 65, 0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 38px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--luxury-gold);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: none;
  padding: 8px 14px;
  border-radius: 7px;
  transition: background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(245, 176, 65,0.14);
  color: var(--brand-secondary);
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------- FOOTER ------------------------- */
footer {
  width: 100%;
  background: var(--brand-primary);
  color: var(--luxury-gold);
  padding: 32px 0 14px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--luxury-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: .91;
  padding: 6px 0;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-brand img {
  width: 35px; height: 35px;
}

/* ---------------- HERO SECTIONS ---------------------- */
.hero {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  padding: 56px 0 44px 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 20px 0 rgba(28,71,39,0.12);
  margin-bottom: 50px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  gap: 2px;
  align-items: flex-start;
}
.hero h1,
.hero h2 {
  color: var(--luxury-gold);
  margin-bottom: 12px;
}
.hero .subtitle {
  color: var(--brand-secondary);
  opacity: .80;
  margin-bottom: 14px;
}
.hero p {
  color: var(--brand-secondary);
  margin-bottom: 18px;
}

/* -------------------- BUTTONS ------------------------ */
.btn, .btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--luxury-dark);
  background: var(--luxury-gold);
  border: none;
  border-radius: 30px;
  padding: 13px 32px;
  margin-top: 9px;
  box-shadow: 0 1px 10px rgba(34,34,34,0.08);
  cursor: pointer;
  transition: background .21s,color .21s,box-shadow .18s, transform .12s;
  outline: none;
  text-align: center;
}
.btn-primary {
  background: var(--brand-accent);
  color: var(--luxury-dark);
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus {
  background: #DAC066;
  color: #312100;
  box-shadow: 0 4px 24px 0 rgba(28,71,39,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* ------------------- FEATURES ------------------------ */
.features {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--luxury-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 265px;
  background: var(--brand-secondary);
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(28,71,39,0.08);
  padding: 24px 20px 22px 20px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #efefeb;
  transition: box-shadow .17s, border-color .18s;
}
.feature-item img {
  width: 39px;
  height: 39px;
  margin-bottom: 7px;
}
.feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.18rem;
  margin-bottom: 5px;
}
.feature-item p {
  color: #3c5146;
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 6px 26px 0 rgba(34,34,34,0.09);
  border-color: var(--luxury-gold);
  z-index: 1;
}

/* ------------- CARDS, GRIDS, SPACING ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 13px;
  background: var(--brand-secondary);
  box-shadow: 0 2px 13px 0 rgba(28,71,39,0.08);
  transition: box-shadow .17s, background .1s;
  padding: 30px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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;
  background: #fff;
  color: #171717;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(28,71,39,0.10);
  margin-bottom: 30px;
  border-left: 4px solid var(--luxury-gold);
  max-width: 530px;
  min-width: 230px;
  width: 94%;
  font-size: 1.07rem;
}
.testimonial-card p {
  color: #232323;
  font-size: 17px;
  margin-bottom: 4px;
}
.testimonial-name {
  font-weight: 600;
  color: var(--brand-primary);
  margin-left: 2px;
  font-size: 1rem;
}

.route-highlights, .tips {
  margin-top: 13px;
  background: var(--luxury-soft);
  border-radius: 10px;
  padding: 18px 19px 8px 19px;
  color: #252525;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---------------- SERVICES GRID ---------------------- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.service-item {
  background: var(--brand-secondary);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(28,71,39,0.09);
  padding: 24px 22px;
  width: 270px;
  margin-bottom: 20px;
  border: 1.2px solid #EBE9E2;
  position: relative;
  transition: box-shadow .13s, border .14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 7px 28px 0 rgba(245,176,65,0.11);
  border-color: var(--luxury-gold);
  z-index: 1;
}
.price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--luxury-gold);
  margin-left: 12px;
  background: #FCF6E8;
  padding: 3px 10px;
  border-radius: 7px;
}

/* ----------- ABOUT & CONTACT SECTION ----------------- */
.about-preview, .about-details, .contact-cta, .contact-info, .contact-hint {
  background: var(--luxury-bg);
  border-radius: 17px;
  box-shadow: 0 2.5px 13px 0 rgba(34,34,34,0.05);
  margin-bottom: 40px;
  padding: 30px 16px 28px 16px;
}
@media (min-width: 720px) {
  .about-preview, .about-details, .contact-cta, .contact-info, .contact-hint {
    padding: 44px 32px 34px 32px;
  }
}
.contact-info ul, .contact-details {
  list-style: none;
  padding: 0;
  margin: 14px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-info li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  color: #253c30;
}
.contact-info img, .contact-details img {
  width: 22px;
  height: 22px;
}
.contact-hint {
  background: #F9F7EF;
  color: #392d08;
  border-radius: 10px;
  margin-top: 18px;
  margin-bottom: 12px;
  padding: 15px 20px;
  font-size: 1.01rem;
  border-left: 3px solid var(--luxury-gold);
  box-shadow: 0 2.5px 8px 0 rgba(245,176,65,0.07);
}

/* --------------- LEGAL PAGES ------------------------- */
.legal {
  background: var(--luxury-soft);
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(28,71,39,0.07);
  padding: 54px 19px 32px 19px;
  margin-bottom: 48px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--brand-primary);
}
.legal h2 {
  margin-top: 24px;
}
.legal ul {
  margin: 13px 0 21px 16px;
}

/* -------------- SPACING: FLEX UTILS ------------------ */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* -------------- RESPONSIVE DESIGN -------------------- */
@media (max-width: 990px) {
  .service-grid, .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .service-item, .feature-item, .card {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.1rem; }
  .hero { padding: 38px 0 30px 0; border-radius: 0 0 22px 22px; }
  .section { margin-bottom: 36px; padding: 26px 8px; }
  .about-preview, .about-details, .contact-cta, .contact-info {
    padding-left: 10px; padding-right: 10px; border-radius: 13px;
  }
  .route-highlights, .tips {
    padding-left: 10px; padding-right: 10px;
    font-size: 0.99rem;
  }
  .service-item, .feature-item {
    padding: 14px 11px; border-radius: 11px;
  }
  .testimonial-card { padding: 13px; border-radius: 10px; font-size: 0.98rem; }
  .footer-brand img { width: 28px; height: 28px; }
  .footer-nav { gap: 13px; }
  .mobile-nav {
    margin-left: 17px;
  }
  .mobile-nav a { font-size: 1.1rem; padding: 8px 9px; }
  .mobile-menu-close { font-size: 2rem; }
  .legal { padding: 19px 6px 22px 6px; border-radius: 9px; }
}
@media (max-width: 600px) {
  .container { padding: 0 7px; }
  .feature-item, .service-item { padding: 10px 7px; }
  .footer-brand { font-size: 0.98rem; }
}

/* Flex align for text-image-section and others */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 21px;
    align-items: center;
  }
  .content-wrapper { align-items: center; }
}

/* ------------------ HOVER/FOCUS EFFECTS -------------- */
.btn, .btn-primary, .feature-item, .card, .service-item {
  transition: box-shadow 0.16s, border 0.13s, background 0.13s, color 0.13s, transform .13s;
}
.btn:active, .btn-primary:active {
  transform: scale(.97);
}
.feature-item:active, .card:active, .service-item:active {
  transform: scale(.98);
}

/* ------------ TESTIMONIALS/REVIEWS SECTION ----------- */
.testimonials {
  background: var(--luxury-bg);
  border-radius: 17px;
  box-shadow: 0 2.5px 15px 0 rgba(28,71,39,0.10);
  padding: 40px 14px 26px 14px;
  margin-bottom: 56px;
}
.testimonials h2 {
  color: var(--brand-primary);
}
.testimonials .testimonial-card {
  background: var(--brand-secondary);
  color: #252525;
  font-size: 1.04rem;
  margin-bottom: 22px;
  border-radius: 15px;
  box-shadow: 0 2.5px 11px rgba(34,34,34,0.09);
  border-left: 4px solid var(--luxury-gold);
  padding: 24px 17px 20px 21px;
}
.testimonials .testimonial-card:last-child { margin-bottom: 0; }
.testimonials em {
  color: #305629;
  font-size: 1rem;
  font-style: italic;
  margin-left: 5px;
  font-weight: 500;
}
.testimonials span {
  color: var(--luxury-gold);
  font-weight: bold;
}

/* ------------- COOKIE CONSENT BANNER ----------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe7;
  color: #1C4727;
  box-shadow: 0 -2px 22px 0 rgba(34,34,34,0.11);
  z-index: 10000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  padding: 28px 26px 24px 16px;
  font-size: 1rem;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(.38,.1,.45,1), opacity 0.28s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  max-width: 580px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  padding: 10px 26px;
  font-weight: 600;
  cursor: pointer;
  background: var(--luxury-gold);
  color: #191504;
  margin: 0 6px 0 0;
  transition: background 0.18s, color 0.12s, transform .11s;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--luxury-gold);
}
.cookie-btn.deny {
  background: #e4e0d5;
  color: #46543a;
  border: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #dac066;
  color: #312100;
  transform: translateY(-2px) scale(1.03);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,71,39,0.63);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: var(--luxury-bg);
  color: var(--luxury-dark);
  padding: 32px 26px 24px 26px;
  border-radius: 20px;
  box-shadow: 0 6px 38px 0 rgba(0,0,0,0.18);
  min-width: 270px;
  max-width: 95vw;
  width: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 11px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #f1efea;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.04rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--luxury-gold);
}
.cookie-category.essential {
  color: #65614b;
  background: #ebe6d0;
}
.cookie-category.essential input[type="checkbox"] {
  display: none;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 20px;
  background: none;
  border: none;
  color: #a19b6e;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 10px;
  transition: background .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f5f2e6;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  margin-top: 7px;
  justify-content: flex-end;
}
@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 18px 10px 13px 10px;
    font-size: 0.96rem;
    align-items: flex-start;
  }
  .cookie-modal {
    width: 95vw;
    min-width: 0;
    padding: 18px 7px 11px 14px;
    border-radius: 11px;
  }
}

/* ------------- SMALL ANIMATIONS & MICROINTERACTIONS -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero, .features, .about-preview, .testimonials, .service-grid, .cookie-banner, .cookie-modal {
  animation: fadeUp 0.8s .08s cubic-bezier(.58,.12,.32,1) backwards;
}

/* ----------- PRINT/UTILITY & DEFAULTS --------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; }
}

/* ------------ ACCESSIBILITY: FOCUS INDICATORS -------- */
:focus-visible {
  outline: 2px solid var(--luxury-gold);
  outline-offset: 1.5px;
}

::selection { background: #F5B041; color: #1C4727; }
::-moz-selection { background: #F5B041; color: #1C4727; }

/* ---------------------------------------------
   END OF LUXURY PREMIUM, FLEXBOX ONLY CSS STYLES
-----------------------------------------------*/
