* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Archivo, sans-serif;
}

::selection {
  background: #6b7884;
  color: #fff;
}

.sm-header-wrapper {
  background-color: #111416;
  /* Dark, near-black slate canvas */
  padding: 0.85rem 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  border-bottom: 1px solid #1f2326;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo Brand Typography Alignment */
.sm-header-wrapper .brand-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 2px;
}

.sm-header-wrapper .brand-title {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: rgb(255, 255, 255);
  font-family: Archivo, sans-serif;
}

.sm-header-wrapper .brand-subtitle {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 3px;
  color: rgb(138, 144, 151);
}

/* Navigation Menu Links */
.sm-header-wrapper .nav-link {
  color: #ffffff !important;
  /* Default white color for links */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s ease-in-out;
  position: relative;
}

/* 
       DYNAMIC ACTIVE CLASS RULE 
       Applies the design's signature gray color and bottom accent underline to ANY active nav-link
    */
.sm-header-wrapper .nav-link.active {
  color: #8a9296 !important;
  /* Muted gray active state matching image_bab9e3.png */
}

.sm-header-wrapper .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background-color: #556372;
  /* Underline indicator line */
}

/* Link Hover State */
.sm-header-wrapper .nav-link:hover {
  color: #a0aab0 !important;
}

/* Action Call Button styling */
.sm-header-wrapper .btn-phone {
  background-color: #6c7a89;
  /* Exact slate gray color */
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.4rem;
  border-radius: 0;
  /* Flat rectangular sharp edges */
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease-in-out;
}

.sm-header-wrapper .btn-phone:hover {
  background-color: #556372;
}

/* Custom Mobile Toggle Menu Tweak */
.sm-header-wrapper .navbar-toggler {
  border: 1px solid #ffffff40;
  padding: 0.25rem 0.5rem;
}

.sm-header-wrapper .navbar-toggler-icon {
  filter: invert(1);
  /* Forces burger icon white */
}

/* ==========================================
       RESPONSIVE BREAKPOINTS
       ========================================== */
@media (max-width: 991.98px) {
  .sm-header-wrapper .navbar-collapse {
    background-color: #161a1d;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
  }

  .sm-header-wrapper .nav-link.active::after {
    display: none;
    /* Removes structural absolute lines on mobile vertical layout stacks */
  }

  .sm-header-wrapper .btn-phone {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}

.sm-footer-wrapper {
  background-color: #0b0d0e;
  /* Matte dark brand background */
  color: #a0aab0;
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
}

/* Brand Header Setup */
.sm-footer-wrapper .brand-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 2px;
}

.sm-footer-wrapper .brand-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.sm-footer-wrapper .footer-desc {
  color: #70797e;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 380px;
}

/* Column Headers (PAGES / CONTACT) */
.sm-footer-wrapper .column-heading {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(106, 112, 119);
  margin-bottom: 16px;
}

/* Link and Contact Elements */
.sm-footer-wrapper .footer-nav-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.sm-footer-wrapper .footer-nav-list li {
  margin-bottom: 0.75rem;
}

.sm-footer-wrapper .footer-link {
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  cursor: pointer;
  text-align: left;
  font-family: Barlow, sans-serif;
  font-size: 15px;
  color: rgb(195, 199, 203);
  padding: 0px;
}

.sm-footer-wrapper .footer-link:hover {
  color: #ffffff;
}

.sm-footer-wrapper .contact-text {
  color: #a0aab0;
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

/* Horizontal Divider Line */
.sm-footer-wrapper .footer-divider {
  border-top: 1px solid #1a1e21;
  margin: 3.5rem 0 1.5rem 0;
  opacity: 1;
}

/* Bottom Copyright Bar */
.sm-footer-wrapper .copyright-text {
  color: #4a5155;
  font-size: 0.8rem;
}

.sm-footer-wrapper .meta-info {
  color: #5d666b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* ==========================================
       FLOATING ACTION BUTTONS (Scoped parent wrapper)
       ========================================== */
.sm-floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-column: reverse;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Plan My Kitchen Slate Button */
.sm-floating-actions .btn-plan {
  background-color: #6c7a89;
  /* Precise slate gray accent match */
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  /* Sharp rectangular geometry */
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.sm-floating-actions .btn-plan:hover {
  background-color: #556372;
  transform: translateY(-2px);
}

/* WhatsApp Pill Shape Button */
.sm-floating-actions .btn-whatsapp {
  background-color: #1ed760;
  /* Vibrant WhatsApp Green */
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  /* Fully rounded pill layout shape */
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(30, 215, 96, 0.3);
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.sm-floating-actions .btn-whatsapp:hover {
  background-color: #1aaf4e;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .sm-footer-wrapper {
    padding: 3rem 0 2rem 0;
  }

  .sm-footer-wrapper .column-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .sm-footer-wrapper .footer-divider {
    margin: 2rem 0 1.5rem 0;
  }

  .sm-floating-actions {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
}

.equipment-hero {
  background: #131517;
  color: #ffffff;
}

.about-banner {
  color: #ffffff;
  position: relative;
  inset: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(rgba(11, 12, 13, 0.6), rgba(11, 12, 13, 0.88));
  height: 100%;
}

.about-banner .category-tag {
  position: relative;
}

.about-banner h1 {
  position: relative;
}

.equipment-hero .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 32px 76px;
}

/* Typography & Elements */
.equipment-hero .category-tag {
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7884;
  margin-bottom: 16px;
}

.equipment-hero h1 {
  font-family: Archivo, sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -1.5px;
  max-width: 820px;
  margin: 0;
}

.equipment-hero p {
  font-size: 19px;
  line-height: 1.6;
  color: #b3b8bd;
  max-width: 600px;
  margin: 22px 0 0;
  font-family: 'Barlow', sans-serif;
}

/* --- Responsive Media Queries --- */

/* Tablets and small laptops (under 1024px) */
@media (max-width: 1024px) {
  .equipment-hero h1 {
    font-size: 48px;
    /* Slightly smaller heading so it doesn't break aggressively */
    letter-spacing: -1px;
  }
}

/* Mobile Devices (under 768px) */
@media (max-width: 768px) {
  .equipment-hero .container {
    padding: 60px 24px 50px;
    /* Snugger padding for smaller screens */
  }

  .equipment-hero h1 {
    font-size: 36px;
    /* Optimized readable size for mobile phones */
    line-height: 1.1;
    /* Slightly looser line-height for smaller text wrapping */
  }

  .equipment-hero p {
    font-size: 17px;
    /* Marginally smaller body text for better visual hierarchy */
    margin-top: 18px;
  }
}


/*====================
Tabs
=====================*/

.equipment-section .equipment-tabs {
  gap: 12px;
  flex-wrap: wrap;
}

.equipment-section .equipment-tabs .nav-link {

  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: #fff;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: .3s;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.equipment-section .equipment-tabs .nav-link span {
  margin-left: 6px;
  font-size: 12px;
}

.equipment-section .equipment-tabs .nav-link.active {

  background: #6d7782;
  color: #fff;
  border-color: #6d7782;
}

/*====================
Cards
=====================*/

.equipment-section .equipment-card {

  border: 1px solid #ddd;
  background: #fff;
  height: 100%;
}

.equipment-section .equipment-image {

  padding: 0;
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-section .equipment-image img {

  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
}

.equipment-section .equipment-info {

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 22px;
  background: rgb(250, 249, 246);
  border-top: 1px solid #ddd;
}

.equipment-section .equipment-info h5 {

  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.equipment-section .equipment-info span {

  border: 1px solid #d4d4d4;

  padding: 5px 10px;

  font-size: 11px;

  color: #6f7d8c;

  font-weight: 700;
  font-family: "Barlow Semi Condensed", sans-serif;
}

/*====================
Responsive
=====================*/

@media(max-width:992px) {

  .equipment-section .equipment-image {
    height: 180px;
  }

  .equipment-section .equipment-info h5 {
    font-size: 22px;
  }

}

@media(max-width:768px) {

  .equipment-section .equipment-tabs {
    justify-content: center;
  }

  .equipment-section .equipment-tabs .nav-link {

    width: 100%;
  }

  .equipment-section .equipment-image {
    height: 220px;
  }

  .equipment-section .equipment-info {

    align-items: flex-start;
    gap: 12px;
  }

  .equipment-section .equipment-info h5 {
    font-size: 20px;
  }

}

@media(max-width:576px) {

  .equipment-section .equipment-image {

    height: 180px;
  }

  .equipment-section .equipment-tabs .nav-link {

    padding: 12px;
    font-size: 12px;
  }

}

.custom-quote-banner {
  background-color: #f2efe9;
  /* Exact warm off-white background */
  padding: 2.5rem 3rem;
  border-radius: 4px;
  /* Subtle modern border rounding */
}

/* Scoped Banner Title */
.custom-quote-banner .banner-title {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

/* Scoped Banner Subtitle */
.custom-quote-banner .banner-subtitle {
  color: #707070;
  font-size: 1.05rem;
  font-weight: 400;
  font-family: "Barlow Semi Condensed", sans-serif;
}

/* Scoped Call-to-Action Button */
.custom-quote-banner .btn-quote {
  background-color: #6c7a89;
  /* Exact slate grey-blue color match */
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border-radius: 0;
  /* Strict rectangular sharp edges matching the graphic */
  transition: background-color 0.2s ease-in-out;
  display: inline-block;
  border: none;
  text-decoration: none;
  font-family: "Barlow Semi Condensed", sans-serif;
}

/* Hover Transition State */
.custom-quote-banner .btn-quote:hover {
  background-color: #556372;
}

/* ==========================================
       RESPONSIVE BREAKPOINTS (Mobile Viewports)
       ========================================== */
@media (max-width: 767.98px) {
  .custom-quote-banner {
    padding: 2rem 1.5rem;
  }

  .custom-quote-banner .banner-title {
    font-size: 1.5rem;
  }

  /* Optimizes button layout on mobile screens */
  .custom-quote-banner .btn-quote {
    width: 100%;
    max-width: 320px;
    margin-top: 0.5rem;
  }
}

.sm-blog-card-wrapper {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  transition: box-shadow 0.2s ease-in-out;
  margin-top: 20px;
}

/* Subtle container hover glow effect */
.sm-blog-card-wrapper:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Image Wrapper Frame Matrix */
.sm-blog-card-wrapper .card-img-holder {
  width: 100%;
  aspect-ratio: 16 / 10;
  /* Perfectly scales the proportional height matching the screenshot */
  background-color: #f7f7f7;
  border-bottom: 2px solid #212529;
  /* Strict sharp dark border separation under graphic */
  overflow: hidden;
}

.sm-blog-card-wrapper .card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Component Wrapper Content Area */
.sm-blog-card-wrapper .card-content {
  padding: 12px;
}

/* Meta Category Tag Typography Rules */
.sm-blog-card-wrapper .meta-category {
  color: #6c7a89;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}

/* Core Article Title Graphic Properties */
.sm-blog-card-wrapper .article-title {
  color: #111416;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.3px;
}

/* Inner Paragraph Summary Context Text */
.sm-blog-card-wrapper .article-excerpt {
  color: #667075;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.8rem;
  font-family: 'Barlow', sans-serif;
}

/* Call to Action Anchor Link Rules */
.sm-blog-card-wrapper .btn-read-more {
  color: #111416 !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid #111416;
  /* Clean exact underline configuration */
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.sm-blog-card-wrapper .btn-read-more:hover {
  color: #6c7a89 !important;
  border-color: #6c7a89;
}

/* ==========================================
       RESPONSIVE BREAKPOINTS
       ========================================== */
@media (max-width: 575.98px) {
  .sm-blog-card-wrapper .card-content {
    padding: 1.5rem 1.25rem 1.8rem 1.25rem;
  }

  .sm-blog-card-wrapper .article-title {
    font-size: 1.3rem;
  }
}

.kitchen-about .about-section {

  padding: 90px 0;
  background: #f4f3ef;
}

.kitchen-about h2 {

  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.5px;
  line-height: 1.05;

}

.kitchen-about .about-content {

  padding-left: 40px;

}

.kitchen-about .about-content p {

  color: #3a3d40;

  font-size: 16px;

  line-height: 32px;

  margin-bottom: 28px;

}

/* FEATURES */

.kitchen-about .features-section {

  padding-bottom: 90px;
  background: #f4f3ef;
}

.kitchen-about .feature-box {

  background: #f7f7f7;

  border: 1px solid #ddd;

  padding: 45px;

  height: 100%;

  transition: .35s;

}



.kitchen-about .feature-number {
  width: 40px;
  height: 40px;
  background: rgb(107, 120, 132);
  transform: rotate(45deg);
  margin-bottom: 26px;
}

.kitchen-about .feature-box h3 {

  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.kitchen-about .features-section p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgb(90, 96, 102);
  margin-top: 12px;
}


.kitchen-about .feature-box p {

  color: #777;

  line-height: 30px;

  margin: 0;

}

.kitchen-about .stats-dark-section {
  background: #161718;
  padding: 80px 0;
  font-family: Inter, sans-serif;
}

.kitchen-about .stats-dark-section .container {
  max-width: 1200px;
}

.kitchen-about .stats-item {
  position: relative;
  padding: 0 42px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}

.kitchen-about .stats-item h2 {

  margin: 0;
  color: #fff;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;

}

.kitchen-about .stats-item h2 span {

  color: #6f7882;

}

.kitchen-about .stats-item p {

  margin-top: 18px;
  margin-bottom: 0;

  color: #8f949a;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

}

.kitchen-about .border-last {

  border-right: 1px solid rgba(255, 255, 255, .08);

}


/************ Hover ************/

.kitchen-about .stats-item {

  transition: .35s;

}

.kitchen-about .stats-item:hover {

  transform: translateY(-6px);

}

.kitchen-about .stats-item:hover h2 {

  color: #ffffff;

}

.kitchen-about .stats-item:hover span {

  color: #ffffff;

}


/************ Tablet ************/

@media(max-width:991px) {

  .kitchen-about .stats-dark-section {

    padding: 60px 0;

  }

  .kitchen-about .about-content {
    padding-left: 0;
  }

  .kitchen-about .stats-item {

    border-right: none;
    text-align: center;
    padding: 30px 20px;

  }

  .kitchen-about .stats-item h2 {

    font-size: 48px;

  }

  .kitchen-about .stats-item p {

    font-size: 10px;
    letter-spacing: 2px;

  }

}


/************ Mobile ************/

@media(max-width:576px) {

  .kitchen-about .stats-dark-section {

    padding: 45px 0;

  }

  .kitchen-about .stats-item {

    padding: 25px 15px;

  }

  .kitchen-about .stats-item h2 {

    font-size: 40px;

  }

  .kitchen-about .stats-item p {

    font-size: 9px;

    letter-spacing: 2px;

  }

}

.kitchen-contact-section {
  background: #f8f7f4;
  padding: 90px 0;
}

.kitchen-contact-section .sub-title {
  color: #6b7884;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.kitchen-contact-section .main-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 0.95;
  color: #17191b;
  margin-bottom: 30px;
}

.kitchen-contact-section .description {
  color: rgb(90, 96, 102);
  font-size: 18px;
  line-height: 1.6;
  max-width: 430px;
  margin-bottom: 45px;
  font-family: 'Barlow', sans-serif;
}

.kitchen-contact-section .contact-item {
  display: flex;
  align-items: center;
  padding: 28px 30px;
  background: #131517;
  margin-bottom: 10px;
}

.kitchen-contact-section .contact-item:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.kitchen-contact-section .icon {
  color: #8c97a3;
  font-size: 24px;
  width: 45px;
}

.kitchen-contact-section .contact-item span {
  display: block;
  color: #8a9097;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.kitchen-contact-section .contact-item h5 {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.kitchen-contact-section .enquiry-box {
  background: #fbfaf8;
  border: 1px solid #ddd8cf;
  padding: 45px;
}

.kitchen-contact-section .enquiry-box h2 {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 26px;
}

.kitchen-contact-section label {
  display: block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgb(106, 112, 119);
  margin-bottom: 7px;
}

.kitchen-contact-section .form-control {
  border-radius: 0;
  border: 1px solid #d7d3cb;
  height: 50px;
  box-shadow: none;
}

.kitchen-contact-section textarea.form-control {
  height: 120px;
  resize: none;
}

.kitchen-contact-section .form-control:focus {
  box-shadow: none;
  border-color: #999;
}

.kitchen-contact-section .submit-btn {
  background: rgb(107, 120, 132);
  color: rgb(255, 255, 255);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px;
  margin-top: 4px;
  width: 100%;
}

.kitchen-contact-section .submit-btn:hover {
  background: #5f6975;
}

@media(max-width:1199px) {
  .kitchen-contact-section .main-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 0.95;
    color: #17191b;
    margin-bottom: 30px;
  }
}

@media(max-width:991px) {

  .kitchen-contact-section {
    padding: 60px 0;
  }

  .kitchen-contact-section .main-title {
    font-size: 50px;
  }

  .kitchen-contact-section .description {
    font-size: 18px;
    max-width: 100%;
  }

  .kitchen-contact-section .enquiry-box {
    margin-top: 40px;
    padding: 30px;
  }

}

@media(max-width:767px) {

  .kitchen-contact-section .main-title {
    font-size: 38px;
  }

  .kitchen-contact-section .description {
    font-size: 16px;
  }

  .kitchen-contact-section .enquiry-box {
    padding: 20px;
  }

  .kitchen-contact-section .enquiry-box h2 {
    font-size: 28px;
  }

}

.sm-hero-section-wrapper {
  position: relative;
  font-family: system-ui, -apple-system, sans-serif;
}

/* Main Background Image & Overlay Canvas Frame */
.sm-hero-section-wrapper .hero-banner-main {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 7rem 0;
  /* Proportional presentation space padding */
  color: #ffffff;
}

/* Tiny Bordered Tag Badge Line */
.sm-hero-section-wrapper .badge-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffffd0;
  border-left: 2px solid #6c7a89;
  /* Branding color anchor mark */
  padding-left: 8px;
  margin-bottom: 2rem;
  display: inline-block;
}

/* Primary Heading Vector Settings */
.sm-hero-section-wrapper .hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  max-width: 780px;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

/* Specific Multi-toned Contrast Emphasis "stainless steel" texts */
.sm-hero-section-wrapper .hero-heading span.muted-text {
  color: #8a9296;
  /* Matches precise smoky gray tone from your design */
}

/* Sub-paragraph Narrative Info Block */
.sm-hero-section-wrapper .hero-lead-text {
  font-size: 1.05rem;
  color: #b0b8bc;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Slate Custom Solid Accent Action Button */
.sm-hero-section-wrapper .btn-hero-solid {
  background-color: #6c7a89;
  /* Core brand layout grey */
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 1.8rem;
  border-radius: 0;
  border: none;
  transition: background-color 0.2s ease;
}

.sm-hero-section-wrapper .btn-hero-solid:hover {
  background-color: #556372;
}

/* Transparent Border Outline Button */
.sm-hero-section-wrapper .btn-hero-outline {
  background-color: transparent;
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 1.8rem;
  border-radius: 0;
  border: 1px solid #ffffff40;
  transition: border-color 0.2s, background-color 0.2s;
}

.sm-hero-section-wrapper .btn-hero-outline:hover {
  border-color: #ffffff;
  background-color: #ffffff10;
}

/* Bottom Counter Row Wrapper Canvas */
.sm-hero-section-wrapper .counters-strip-bar {
  background-color: #0f1112;
  /* Dark secondary canvas footer bar */
  padding: 2.5rem 0;
  border-top: 1px solid #1a1e21;
}

/* Vertical Divider Borders between Grid elements */
.sm-hero-section-wrapper .counter-col {
  border-right: 1px solid #1a1e21;
}

.sm-hero-section-wrapper .counter-col:last-child {
  border-right: none;
  /* Strip end border line on end unit */
}

/* Large Numeric Typography metrics */
.sm-hero-section-wrapper .counter-num {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.sm-hero-section-wrapper .counter-num span.plus-tint {
  color: #6c7a89;
  /* Faded plus element vector text mark color */
}

.sm-hero-section-wrapper .counter-num span.percent-tint {
  color: #4b5357;
  /* Matches the lower contrast 100% layer mark styling exactly */
}

/* Descriptive metric subtitle layout text */
.sm-hero-section-wrapper .counter-label {
  color: #5d666b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* ==========================================
       RESPONSIVE BREAKPOINTS
       ========================================== */
@media (max-width: 991.98px) {
  .sm-hero-section-wrapper .hero-banner-main {
    padding: 5rem 0 4rem 0;
  }

  .sm-hero-section-wrapper .hero-heading {
    font-size: 2.5rem;
  }

  .sm-hero-section-wrapper .counter-col {
    border-right: none;
    border-bottom: 1px solid #1a1e21;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm-hero-section-wrapper .counter-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .sm-hero-section-wrapper .hero-heading {
    font-size: 2rem;
  }

  .sm-hero-section-wrapper .btn-group-custom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .sm-hero-section-wrapper .btn-hero-solid,
  .sm-hero-section-wrapper .btn-hero-outline {
    width: 100%;
    text-align: center;
  }
}

.sm-specialities-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px 40px;
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
}

/* Flex Header Container Setup */
.sm-specialities-section .section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Sub-header Tracker Label */
.sm-specialities-section .section-tagline {
  font-family: "Barlow Semi Condensed", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7884;
  margin-bottom: 14px;
}

/* Main Section Header Typography */
.sm-specialities-section .section-heading {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -1px;
  max-width: 620px;
  color: #17191b;
  margin-bottom: 0;
}

/* Action Link Text Button */
.sm-specialities-section .btn-all-equipment {
  background: none;
  border: none;
  border-bottom: 2px solid #6b7884;
  cursor: pointer;
  font-family: "Barlow Semi Condensed", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #17191b;
  padding: 0 0 4px 0;
  transition: color 0.2s, border-color 0.2s;
}

.sm-specialities-section .btn-all-equipment:hover {
  color: #6b7884;
  border-color: #17191b;
}

/* 3-Column Native CSS Grid (Employs your clean border separation trick) */
.sm-specialities-section .specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e1ded7;
  /* Acts as the absolute internal alignment border lines */
  border: 1px solid #e1ded7;
}

/* Individual Component Feature Card Slots */
.sm-specialities-section .grid-card {
  background: #faf9f6;
  /* Off-white card canvas matching rgb(250, 249, 246) */
  padding: 38px 32px;
  transition: background-color 0.2s ease-in-out;
}

.sm-specialities-section .grid-card:hover {
  background: #f4f2ec;
  /* Smooth background shift feedback on hover */
}

/* Card Number Layout Label */
.sm-specialities-section .card-num {
  font-weight: 800;
  font-size: 13px;
  color: #b9bdc2;
  letter-spacing: 1px;
}

/* Internal Typography Mechanics */
.sm-specialities-section .card-title {
  font-weight: 700;
  font-size: 23px;
  color: #17191b;
  margin-top: 18px;
  margin-bottom: 0;
  letter-spacing: -0.3px;
}

.sm-specialities-section .card-desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: #5a6066;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ==========================================
       RESPONSIVE DESIGN BREAKPOINTS
       ========================================== */
@media (max-width: 991.98px) {
  .sm-specialities-section .specialities-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Scales down seamlessly to 2 columns on tablets */
  }
}

@media (max-width: 767.98px) {
  .sm-specialities-section {
    padding: 60px 20px 40px;
  }

  .sm-specialities-section .section-heading {
    font-size: 32px;
  }

  .sm-specialities-section .specialities-grid {
    grid-template-columns: 1fr;
    /* Compresses layout to clean 1-column stack on smartphones */
  }

  .sm-specialities-section .section-header-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

.sm-recent-kitchens-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  /* */
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
}

/* Section Header Tracking Labels */
.sm-recent-kitchens-section .section-tagline {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7884;
  /* */
  margin-bottom: 14px;
  /* */
}

.sm-recent-kitchens-section .section-heading {
  font-weight: 800;
  font-size: 46px;
  /* */
  line-height: 1.02;
  /* */
  letter-spacing: -1px;
  /* */
  max-width: 620px;
  /* */
  margin-bottom: 40px;
  /* */
  color: #17191b;
}

/* Master Layout Grid Structure Matrix Alignment */
.sm-recent-kitchens-section .portfolio-grid-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  /* */
  grid-auto-rows: 230px;
  /* */
  gap: 14px;
  /* */
}

/* Base Component Block Properties */
.sm-recent-kitchens-section .grid-card {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* */
  display: flex;
  align-items: flex-end;
  /* */
}

/* Specific Unique Asymmetrical Row Span Configurations */
.sm-recent-kitchens-section .feature-card-large {
  grid-row: span 2;
  /* */
  /* background-image: url('./images/multi-cuisine.jpg'); */
}



/* Text Protection Vignette Gradient Shade Mask */
.sm-recent-kitchens-section .card-vignette-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(11, 12, 13, 0.85));
  /* */
  z-index: 1;
}

/* Inner Relative Typography Box Holder Alignment */
.sm-recent-kitchens-section .card-content-holder {
  position: relative;
  padding: 16px 18px;
  /* */
  z-index: 2;
  width: 100%;
}

.sm-recent-kitchens-section .padding-large {
  padding: 24px 24px 22px 24px;
  /* */
}

/* Core Element Label Metrics */
.sm-recent-kitchens-section .card-title {
  font-weight: 700;
  font-size: 17px;
  /* */
  color: #ffffff;
  /* */
  margin-bottom: 0;
}

.sm-recent-kitchens-section .title-large {
  font-size: 22px;
  /* */
}

.sm-recent-kitchens-section .card-subtitle {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 12px;
  /* */
  letter-spacing: 1.5px;
  /* */
  color: #ffffffd0;
  margin-top: 4px;
  /* */
}

.sm-recent-kitchens-section .padding-large .card-subtitle {
  color: #6b7884;
  /* */
  font-size: 13px;
  /* */
  margin-top: 6px;
  /* */
}

/* ==========================================
       RESPONSIVE DESIGN BREAKPOINTS
       ========================================== */
@media (max-width: 991.98px) {
  .sm-recent-kitchens-section .portfolio-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    /* Collapses down smoothly to dual grids on tablets */
    grid-auto-rows: 210px;
  }

  .sm-recent-kitchens-section .feature-card-large {
    grid-row: span 1;
    /* Normalizes the main grid item blocks tracking layout flow */
  }
}

@media (max-width: 767.98px) {
  .sm-recent-kitchens-section {
    padding: 48px 20px 64px;
  }

  .sm-recent-kitchens-section .section-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .sm-recent-kitchens-section .portfolio-grid-wrapper {
    grid-template-columns: 1fr;
    /* Compresses into clear unified single stream on small phones */
    grid-auto-rows: 240px;
  }
}

.sm-journey-timeline {
  margin: 0 auto;
  padding: 96px 32px;
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  background-color: #faf9f6;
  /* Off-white container canvas background matching branding */
}

.sm-journey-timeline .container {
  max-width: 1280px;
}

/* Section Subtitle Tagline styling */
.sm-journey-timeline .section-tagline {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7884;
  margin-bottom: 14px;
}

/* Core Main Title Header Typography */
.sm-journey-timeline .section-heading {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 54px;
  color: #17191b;
}

/* Horizontal Grid Base Line Grid */
.sm-journey-timeline .timeline-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0px;
  border-top: 2px solid #17191b;
  /* Strong black structural accent anchor */
}

/* Individual Card Column Nodes */
.sm-journey-timeline .timeline-node {
  padding: 26px 22px 0px 22px;
  border-right: 1px solid #e1ded7;
  position: relative;
}

/* Removes right grid separation border on the final column slot */
.sm-journey-timeline .timeline-node:last-child {
  border-right: none;
}

/* Diamond Node Indicator Points resting perfectly centered over top grid line */
.sm-journey-timeline .timeline-node .diamond-marker {
  position: absolute;
  top: -8px;
  left: 22px;
  width: 13px;
  height: 13px;
  background: #6b7884;
  transform: rotate(45deg);
  z-index: 2;
}

/* Year Typography Settings */
.sm-journey-timeline .node-year {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1px;
  color: #17191b;
  line-height: 1;
}

/* Milestone Phase Titles */
.sm-journey-timeline .node-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 10px;
  color: #17191b;
}

/* Context Description Paragraphs */
.sm-journey-timeline .node-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #5a6066;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ==========================================
       RESPONSIVE DESIGN VIEWPORT BREAKPOINTS
       ========================================== */

/* Tablet & Intermediate Horizontal Scaling */
@media (max-width: 991.98px) {
  .sm-journey-timeline .timeline-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .sm-journey-timeline .timeline-node {
    border-right: 1px solid #e1ded7;
    padding-bottom: 20px;
  }

  /* Clean out lines dynamically matching multi-row breaks */
  .sm-journey-timeline .timeline-node:nth-child(3),
  .sm-journey-timeline .timeline-node:last-child {
    border-right: none;
  }
}

/* Phone Vertical Timeline Stack Shift */
@media (max-width: 767.98px) {
  .sm-journey-timeline {
    padding: 60px 20px;
  }

  .sm-journey-timeline .section-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .sm-journey-timeline .timeline-grid-wrapper {
    grid-template-columns: 1fr;
    /* Transforms to single stream layout stack list */
    border-top: none;
    border-left: 2px solid #17191b;
    /* Rotates the tracking line timeline to the left edge margin */
    padding-left: 10px;
    row-gap: 32px;
  }

  .sm-journey-timeline .timeline-node {
    padding: 0px 0px 0px 24px;
    border-right: none;
  }

  /* Adjust diamond bullet markers to scale vertically along left baseline matrix border */
  .sm-journey-timeline .timeline-node .diamond-marker {
    top: 6px;
    left: -17px;
  }
}

.sm-blog-section {
  margin: 0 auto;
  padding: 96px 32px 40px;
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  background-color: #faf9f6;
}

.sm-blog-section .container {
  max-width: 1280px;
}

/* Section Header Layout Flex Box */
.sm-blog-section .blog-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Sub-title Category Tagline */
.sm-blog-section .section-tagline {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7884;
  margin-bottom: 14px;
}

/* Primary Heading Typography */
.sm-blog-section .section-heading {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -1px;
  max-width: 560px;
  color: #17191b;
  margin-bottom: 0;
}

/* Header Accent Link Button Layout */
.sm-blog-section .btn-all-articles {
  background: none;
  border: none;
  border-bottom: 2px solid #6b7884;
  cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #17191b;
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sm-blog-section .btn-all-articles:hover {
  color: #6b7884;
  border-color: #17191b;
}

/* Custom 3-Column Native CSS Grid Element Matrix */
.sm-blog-section .blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual Article Component Container Box */
.sm-blog-section .article-card {
  background: #ffffff;
  border: 1px solid #e1ded7;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sm-blog-section .article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(23, 25, 27, 0.04);
}

/* Proportional Fixed Image Banner Canvas Holder Frame */
.sm-blog-section .card-img-frame {
  height: 196px;
  overflow: hidden;
  background: #dfdcd4;
}

.sm-blog-section .card-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sm-blog-section .article-card:hover .card-img-frame img {
  transform: scale(1.03);
}

/* Body Text Segment Wrapper Layout padding */
.sm-blog-section .card-body-content {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

/* Reading Metadata Row */
.sm-blog-section .article-meta {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6b7884;
}

/* Article Card Heading Line Typography */
.sm-blog-section .article-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.3px;
  margin-top: 12px;
  margin-bottom: 0;
  color: #17191b;
}

/* Card Narrative Snippet Context Line Paragraph */
.sm-blog-section .article-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: #5a6066;
  margin-top: 12px;
  margin-bottom: 0;
  flex: 1 1 auto;
}

/* Underlined Internal Secondary CTA Action Anchor Target Text */
.sm-blog-section .article-action-link {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #17191b;
  border-bottom: 2px solid #6b7884;
  align-self: flex-start;
  padding-bottom: 3px;
  margin-top: 18px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sm-blog-section .article-card:hover .article-action-link {
  color: #6b7884;
  border-color: #17191b;
}

/* ==========================================
       RESPONSIVE DESIGN VIEWPORT ADJUSTMENTS
       ========================================== */

@media (max-width: 991.98px) {
  .sm-blog-section .blog-articles-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Collapses down smoothly to 2 columns on tablets */
  }
}

@media (max-width: 767.98px) {
  .sm-blog-section {
    padding: 64px 20px 40px;
  }

  .sm-blog-section .section-heading {
    font-size: 32px;
  }

  .sm-blog-section .blog-header-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .sm-blog-section .blog-articles-grid {
    grid-template-columns: 1fr;
    /* Absolute vertical presentation stack streaming on mobile viewports */
    gap: 20px;
  }
}

.sm-hero-header {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* Using a placeholder industrial premium kitchen image */
  /* background-image: url('./images/about-banner.jpg'); */
}

/* Dramatic Cinematic Content Shield Mask & Gradient Overlay */
.sm-hero-header .hero-vignette-overlay {
  position: absolute;
  inset: 0px;
  background: linear-gradient(rgba(11, 12, 13, 0.55) 0%,
      rgba(11, 12, 13, 0.35) 35%,
      rgba(11, 12, 13, 0.92) 100%);
  z-index: 1;
}

/* Primary Container Content Alignment Node */
.sm-hero-header .hero-content-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0px auto;
  padding: 0px 32px 72px;
  z-index: 2;
}

/* Meta Pill Tag Badge Group */
.sm-hero-header .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 15px;
  margin-bottom: 26px;
}

.sm-hero-header .badge-dot {
  width: 7px;
  height: 7px;
  background: rgb(107, 120, 132);
  /* Steel Grey theme color accent */
  border-radius: 50%;
}

.sm-hero-header .badge-text {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(233, 231, 226);
}

/* Massive Primary Branding Headings */
.sm-hero-header .hero-heading {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 78px;
  line-height: 0.94;
  letter-spacing: -2px;
  color: rgb(255, 255, 255);
  max-width: 920px;
  text-wrap: balance;
}

.sm-hero-header .hero-heading-accent {
  color: rgb(107, 120, 132);
}

/* Description Narrative Blurb Body */
.sm-hero-header .hero-lead-text {
  font-size: 20px;
  line-height: 1.5;
  color: rgb(205, 208, 211);
  max-width: 560px;
  margin-top: 26px;
  font-weight: 400;
}

/* Primary and Secondary Interactive Navigation Actions Row */
.sm-hero-header .hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Solid CTA Button Component */
.sm-hero-header .btn-primary-steel {
  background: rgb(107, 120, 132);
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 30px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.sm-hero-header .btn-primary-steel:hover {
  background: rgb(87, 98, 109);
}

.sm-hero-header .btn-primary-steel:active {
  transform: scale(0.98);
}

/* Outline Secondary Variant Action Button Component */
.sm-hero-header .btn-outline-white {
  background: transparent;
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 30px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.sm-hero-header .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.sm-hero-header .btn-outline-white:active {
  transform: scale(0.98);
}

/* ==========================================
       RESPONSIVE DESIGN BREAKPOINTS
       ========================================== */

@media (max-width: 991.98px) {
  .sm-hero-header .hero-heading {
    font-size: 56px;
    letter-spacing: -1.5px;
  }

  .sm-hero-header .hero-lead-text {
    font-size: 18px;
    max-width: 500px;
  }
}

@media (max-width: 767.98px) {
  .sm-hero-header {
    min-height: 75vh;
    align-items: center;
    /* Centers display grid context vertically on small mobile spaces */
  }

  .sm-hero-header .hero-content-container {
    padding: 80px 20px 48px;
  }

  .sm-hero-header .hero-heading {
    font-size: 38px;
    letter-spacing: -1px;
    line-height: 1.05;
  }

  .sm-hero-header .hero-lead-text {
    font-size: 16px;
    margin-top: 20px;
  }

  .sm-hero-header .hero-action-row {
    flex-direction: column;
    /* Vertical stack alignment arrangement actions row for tap compliance */
    gap: 10px;
    width: 100%;
    margin-top: 28px;
  }

  .sm-hero-header .btn-primary-steel,
  .sm-hero-header .btn-outline-white {
    width: 100%;
    text-align: center;
  }
}

.sm-metrics-bar {
  background: rgb(13, 15, 17);
  /* Premium deep charcoal background */
}

/* Outer structural grid canvas wrapper */
.sm-metrics-bar .metrics-grid-wrapper {
  max-width: 1280px;
  margin: 0px auto;
  padding: 0px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Individual metric block nodes */
.sm-metrics-bar .metric-node {
  padding: 44px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Removes right border on the last item for cleaner presentation */
.sm-metrics-bar .metric-node:last-child {
  border-right: none;
}

/* Dominant numerical display typography */
.sm-metrics-bar .metric-number {
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 1;
  color: rgb(255, 255, 255);
  letter-spacing: -1.5px;
}

/* Accent color for matrix unit symbols (+, %) */
.sm-metrics-bar .metric-accent-symbol {
  color: rgb(107, 120, 132);
}

/* Contextual tracking description labels */
.sm-metrics-bar .metric-label {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(138, 144, 151);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ==========================================
       RESPONSIVE DESIGN VIEWPORT BREAKPOINTS
       ========================================== */

@media (max-width: 991.98px) {
  .sm-metrics-bar .metrics-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    /* Collapses smoothly to a 2x2 layout matrix on tablets */
  }

  .sm-metrics-bar .metric-node {
    padding: 36px 20px;
  }

  /* Dynamically realigns separation borders on 2-column wraps */
  .sm-metrics-bar .metric-node:nth-child(2) {
    border-right: none;
  }

  .sm-metrics-bar .metric-node:nth-child(1),
  .sm-metrics-bar .metric-node:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 575.98px) {
  .sm-metrics-bar .metrics-grid-wrapper {
    grid-template-columns: 1fr;
    /* Pure linear vertical stack flow for modern smartphones */
    padding: 0px 20px;
  }

  .sm-metrics-bar .metric-node {
    padding: 28px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sm-metrics-bar .metric-node:last-child {
    border-bottom: none;
  }

  .sm-metrics-bar .metric-number {
    font-size: 42px;
  }
}

.sm-faq-section {
  background: rgb(236, 234, 228);
}

.sm-faq-section .faq-container {
  max-width: 980px;
  margin: 0px auto;
  padding: 96px 32px;
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
}

/* Section Tagline Tracking Indicator Label */
.sm-faq-section .section-tagline {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(107, 120, 132);
  margin-bottom: 14px;
}

/* Section Main Heading Typography */
.sm-faq-section .section-heading {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 40px;
  color: rgb(23, 25, 27);
}

/* Custom Micro-Engineered Bootstrap Accordion Overrides */
.sm-faq-section .accordion-custom {
  border-top: 1px solid rgb(216, 212, 203);
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgb(216, 212, 203);
  --bs-accordion-btn-padding-x: 4px;
  --bs-accordion-btn-padding-y: 24px;
}

.sm-faq-section .accordion-item-node {
  border: none;
  border-bottom: 1px solid rgb(216, 212, 203);
  background: transparent;
}

/* Accordion Toggle Header Elements Trigger Button */
.sm-faq-section .accordion-trigger-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  box-shadow: none !important;
}

/* Target Typography Style Properties inside buttons */
.sm-faq-section .faq-question-text {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
  color: rgb(23, 25, 27);
  margin-bottom: 0;
}

/* Custom Pure CSS +/- Vector Status Symbol Matrix */
.sm-faq-section .faq-status-icon {
  flex: 0 0 auto;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: rgb(107, 120, 132);
  width: 26px;
  text-align: center;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Custom Rotate indicator state on toggle expand paths */
.sm-faq-section .accordion-trigger-btn:not(.collapsed) .faq-status-icon {
  transform: rotate(45deg);
  color: rgb(23, 25, 27);
}

/* Collapsible Body Inner Frame Content Holder Layout */
.sm-faq-section .faq-body-content {
  padding: 0px 4px 28px 4px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgb(90, 96, 102);
  max-width: 820px;
}

/* ==========================================
       RESPONSIVE DESIGN BREAKPOINTS 
       ========================================== */

@media (max-width: 767.98px) {
  .sm-faq-section .faq-container {
    padding: 64px 20px;
  }

  .sm-faq-section .section-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .sm-faq-section .faq-question-text {
    font-size: 17px;
  }

  .sm-faq-section .accordion-trigger-btn {
    padding: 20px 4px;
  }
}

.sm-cta-banner {
  background: rgb(107, 120, 132);
  /* Signature brand steel grey */
  color: rgb(255, 255, 255);
}

/* Flex container balancing layout alignment between text and button */
.sm-cta-banner .cta-container {
  max-width: 1280px;
  margin: 0px auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Core heading bold typography metric settings */
.sm-cta-banner .cta-heading {
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -1px;
  max-width: 640px;
  margin-bottom: 0;
}

/* Body subtext narrative description lines */
.sm-cta-banner .cta-desc {
  font-size: 18px;
  color: rgb(223, 228, 233);
  margin-top: 16px;
  max-width: 520px;
  margin-bottom: 0;
}

/* Premium interactive primary action layout button */
.sm-cta-banner .btn-cta-dark {
  background: rgb(19, 21, 23);
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 38px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.sm-cta-banner .btn-cta-dark:hover {
  background: rgb(35, 39, 43);
}

.sm-cta-banner .btn-cta-dark:active {
  transform: scale(0.98);
}

/* ==========================================
       RESPONSIVE DESIGN VIEWPORT BREAKPOINTS
       ========================================== */

@media (max-width: 991.98px) {
  .sm-cta-banner .cta-heading {
    font-size: 38px;
  }
}

@media (max-width: 767.98px) {
  .sm-cta-banner .cta-container {
    padding: 60px 20px;
    flex-direction: column;
    /* Shifts layouts to stacked single-stream format on mobile phones */
    align-items: flex-start;
    /* Forces left-aligned rhythm grid styling rules */
    gap: 28px;
  }

  .sm-cta-banner .cta-heading {
    font-size: 32px;
    line-height: 1.1;
  }

  .sm-cta-banner .cta-desc {
    font-size: 16px;
    margin-top: 12px;
  }

  .sm-cta-banner .btn-cta-dark {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}

/* ==========================================
   PARENT CLASS SCOPED STYLES
   ========================================== */
.hospitality-clients-section {
  background-color: #ededea;
  color: #1a1a1a;
  padding: 60px 0;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

/* Typography elements under parent */
.hospitality-clients-section .section-subtitle {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(107, 120, 132);
  margin-bottom: 14px;
}

.hospitality-clients-section .section-title {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -1px;
  max-width: 680px;
}

.hospitality-clients-section .section-desc {
  font-size: 17px;
  line-height: 1.5;
  color: rgb(90, 96, 102);
  margin-top: 16px;
  max-width: 520px;
}

/* Marquee Scoped Layout */
.hospitality-clients-section .marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Subtle gradient fade on edges */
.hospitality-clients-section .marquee-wrapper::before,
.hospitality-clients-section .marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hospitality-clients-section .marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ededea, transparent);
}

.hospitality-clients-section .marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ededea, transparent);
}

.hospitality-clients-section .marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
}

/* Dynamic Animation Configurations */
.hospitality-clients-section .track-right {
  animation: scrollRightParent 40s linear infinite;
}

.hospitality-clients-section .track-left {
  animation: scrollLeftParent 40s linear infinite;
}

/* Pause track on wrapper hover */
.hospitality-clients-section .marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* Scoped Card Custom Designs */
.hospitality-clients-section .client-card {
  background: #ffffff;
  width: 170px;
  height: 160px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.hospitality-clients-section .card-img-container {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px;
}

.hospitality-clients-section .card-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hospitality-clients-section .card-body-custom {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 60px;
}

.hospitality-clients-section .brand-name {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hospitality-clients-section .brand-location {
  font-size: 0.625rem;
  color: #8c8c88;
  margin: 2px 0 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================
   ANIMATION KEYFRAMES
   ========================================== */
@keyframes scrollLeftParent {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes scrollRightParent {
  0% {
    transform: translateX(calc(-50% - 10px));
  }

  100% {
    transform: translateX(0);
  }
}

.sm-coverage {
    background: #131517;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.sm-coverage .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center
}

.sm-coverage .eyebrow {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7884;
  margin-bottom: 16px
}

.sm-coverage h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1px
}

.sm-coverage h2 .mut {
  color: #6b7884
}

.sm-coverage .lede {
  font-size: 18px;
  line-height: 1.6;
  color: #b3b8bd;
  margin-top: 22px;
  max-width: 460px
}

.sm-coverage .regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px
}

.sm-coverage .region {
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 20px
}

.sm-coverage .region h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff
}

.sm-coverage .region p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #878d93;
  margin-top: 8px
}

.sm-coverage .mapcard {
  position: relative;
  background: linear-gradient(158deg, #1b2026 0%, #2b333c 55%, #14181c 100%);
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  padding: 18px
}

.sm-coverage .chip {
  position: absolute;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 40px;
  padding: 6px 13px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #dfe5ea;
  z-index: 3
}

.sm-coverage .chip.l {
  left: 18px
}

.sm-coverage .chip.r {
  right: 18px
}

.sm-coverage .chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84
}

.sm-coverage svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible
}

.sm-coverage .state {
  fill: #3a434c;
  stroke: #11151a;
  stroke-width: .4;
  transition: fill .3s
}

.sm-coverage .state.hub {
  fill: #7a8893
}

.sm-coverage .route-base {
  fill: none;
  stroke: #9aa6b0;
  stroke-width: .7;
  opacity: .45
}

.sm-coverage .route-flow {
  fill: none;
  stroke: #e3e9ee;
  stroke-width: 1.1;
  stroke-linecap: round;
  animation: sm-flow linear infinite
}

@keyframes sm-flow {
  from {
    stroke-dashoffset: var(--o)
  }

  to {
    stroke-dashoffset: 0
  }
}

.sm-coverage .ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: sm-ping 2.8s ease-out infinite;
}

@keyframes sm-ping {
  0% {
    transform: scale(.5);
    opacity: .85
  }

  70% {
    transform: scale(2.6);
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

.sm-coverage .city-label {
  fill: #27313a;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700
}

.sm-coverage .legend {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
  padding: 4px 4px 0;
  flex-wrap: wrap
}

.sm-coverage .legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #878d93
}

.sm-coverage .legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block
}

.sm-coverage .foot {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a636b;
  z-index: 3
}

@media (max-width:1000px) {
  .sm-coverage .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px
  }

  .sm-coverage h2 {
    font-size: 38px
  }
}

@media (max-width:560px) {
  .sm-coverage .regions {
    grid-template-columns: 1fr
  }

  .sm-coverage h2 {
    font-size: 30px
  }
}

.article-container {
      animation: smfade 0.5s ease 0s 1 normal both running;
    }

   .article-container .article-header {
      max-width: 800px;
      margin: 0 auto;
      padding: 64px 32px 40px;
    }

   .article-container .image-wrapper {
      max-width: 920px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Placeholder for the layout image */
   .article-container .article-image {
      background-color: rgb(236, 234, 228); 
      min-height: 350px; 
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgb(107, 120, 132);
      font-family: Archivo, sans-serif;
      font-weight: 800;
    }

   .article-container .article-body {
          max-width: 1350px;
    margin: 0 auto;
    padding: 50px;
    }

    /* Header Components */
   .article-container .back-button {
      background: none;
      border: none;
      cursor: pointer;
      font-family: "Barlow Semi Condensed", sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgb(107, 120, 132);
      padding: 0;
      margin-bottom: 30px;
      transition: color 0.2s ease;
    }

   .article-container .back-button:hover {
      color: rgb(47, 51, 55);
    }

   .article-container .article-meta {
      font-family: "Barlow Semi Condensed", sans-serif;
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgb(107, 120, 132);
    }

   .article-container .article-title {
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: 44px;
      line-height: 1.04;
      letter-spacing: -1px;
      margin-top: 16px;
      text-wrap: balance;
      color: #000000;
    }

  .article-container  .article-subtitle {
      font-size: 20px;
      line-height: 1.5;
      color: rgb(90, 96, 102);
      margin-top: 20px;
    }

    /* Body Components */
  .article-container  .paragraph {
      font-size: 17.5px;
      line-height: 1.7;
      color: rgb(47, 51, 55);
      margin-top: 18px;
    }

   .article-container .section-title {
      font-family: Archivo, sans-serif;
      font-weight: 800;
      font-size: 26px;
      letter-spacing: -0.4px;
      margin: 34px 0 4px;
      color: #000000;
    }

    /* Custom Geometric Bullet List */
  .article-container  .list-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-top: 13px;
    }

   .article-container .list-bullet {
      flex: 0 0 auto;
      width: 8px;
      height: 8px;
      background: rgb(107, 120, 132);
      transform: rotate(45deg);
      margin-top: 9px;
    }

   .article-container .list-text {
      font-size: 17px;
      line-height: 1.6;
      color: rgb(47, 51, 55);
    }

    /* Call to Action Banner */
   .article-container .cta-banner {
      margin-top: 48px;
      background: rgb(236, 234, 228);
      padding: 34px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

   .article-container .cta-heading {
      font-family: Archivo, sans-serif;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.4px;
      max-width: 420px;
      color: #000000;
    }

   .article-container .cta-button {
      background: rgb(107, 120, 132);
      color: rgb(255, 255, 255);
      border: none;
      cursor: pointer;
      font-family: "Barlow Semi Condensed", sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 15px 28px;
      transition: background-color 0.2s ease;
    }

    .article-container .article-image img{
          width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    background: rgb(223, 220, 212);
    }

  .article-container  .cta-button:hover {
      background: rgb(80, 90, 100);
    }

    /* Fade-in Animation */
    @keyframes smfade {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }