/*
Theme Name: Nashville Theme
Theme URI: https://clicktecs.com/
Author: Clicktecs Team
Author URI: https://clicktecs.com/
Description: A custom WordPress theme developed for Nashville Signature Signs. Built on Underscores framework, optimized for performance, responsiveness, and easy customization.
Version: 1.1.0
Requires at least: 5.4
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clicktecs
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout
*/

/*
Nashville Theme is based on Underscores (https://underscores.me/),
(C) 2012–2024 Automattic, Inc.

Underscores is distributed under the terms of the GNU GPL v2 or later.


 */

/* ============================================================
   STYLE.CSS â€” Nashville Signature Signs
   All home + internal page sections + media queries
   ============================================================ */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT / INTRO SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.contentside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info__block .contact-social a:hover{
    color: #000;
}
.contentside ul li {
position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.contentside a:not([class]),
.section-contact a:not([class]){
  text-decoration: underline;
    color: var(--gold);
}

.contentside ul li::before {
 content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}
.section-about {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}

.section-about__grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   clamp(2rem, 4vw, 3.5rem);
  align-items:           stretch;
}

/* Left â€” story card */
.about-story {
  background: var(--dark);
  color:      var(--white);
  padding:    clamp(2rem, 4vw, 3rem);
  position:   relative;
  display:    flex;
  flex-direction: column;
}
/* no left border */

.about-story__tag {
  font-size:     0.8125rem;
  font-weight:   700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:         var(--gold);
  margin-bottom: 0.75rem;
}
.about-story h3 { color: var(--white); margin-bottom: 0.25rem; }
.about-story h3 em { display: block; font-style: normal; color: var(--gold); }
.about-story p { color: var(--white); font-size: 1rem; margin-top: 1rem; }
.about-story .btn { margin-top: 1.75rem; align-self: flex-start; }

/* Right â€” consultation form */
.about-form {
  background: var(--white);
  box-shadow: 0 0 30px rgba(15,32,68,0.12);
  padding:    clamp(1.75rem, 3vw, 2.5rem);
  display:    flex;
  flex-direction: column;
}
.about-form h3  { margin-bottom: 1.5rem; }

.form-row {
  display:       grid;
  grid-template-columns: 1fr 1fr;
  gap:           1rem;
  margin-bottom: 1rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { display: none; } /* labels hidden â€” placeholders only */

.form-field input,
.form-field textarea,
.form-field select {
  width:        100%;
  padding:      0.75rem 1rem;
  border:       1px solid #f3edda;
  border-radius: 0;
  font-size:    1rem;
  color:        var(--dark);
  background:   #fbfaf4;
  transition:   border-color var(--ease);
  outline:      none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--dark); opacity: 0.6; }
.form-field textarea { min-height: 110px; resize: vertical; }

.about-form__submit {
  text-align:  center;
  margin-top:  1.25rem;
}
.about-form__submit .btn { min-width: 200px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURED PRODUCTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-products {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.products-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   clamp(1.25rem, 2.5vw, 2rem);
}
.product-card {
  background:  var(--white);
  overflow:    hidden;
  box-shadow:  0 2px 12px rgba(0,0,0,.07);
  transition:  transform var(--ease), box-shadow var(--ease);
  border:      1px solid #eee;
}
.product-card:hover {
  transform:  translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
}
.product-card__img {
  position:     relative;
  overflow:     hidden;
  aspect-ratio: 16 / 10;
}
.product-card__img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body { padding: clamp(1.25rem, 2vw, 1.75rem); }
.product-card__body h3 {
  font-size:     1.75rem;
  margin-bottom: 0.75rem;
  color:         var(--dark);
}
.product-card__body p { font-size: 1rem; color: var(--dark); }
.product-card__link {
  display:     inline-flex;
  align-items: center;
  gap:         0.375rem;
  font-size:   1rem;
  font-weight: 700;
  color:       var(--gold);
  margin-top:  1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:  gap var(--ease), color var(--ease);
}
.product-card__link:hover { color: var(--dark); gap: 0.6rem; }
.product-card__link i { font-size: 0.8em; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY CHOOSE US
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-why {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--dark);
  color:      var(--white);
}
.section-why .section-header h2 {
  color:      var(--gold);
}
.section-why .section-header p { color: var(--white); }
/* Hide the small section label for this section */
.section-why .section-label { display: none; }

.why-grid {
  display:               grid;
  grid-template-columns: repeat(6, 1fr);
  gap:                   clamp(1.25rem, 2.5vw, 2rem);
}
.why-card {
  grid-column:    span 2;
  background:     var(--gold);
  padding:        clamp(1.75rem, 3vw, 2.5rem);
  text-align:     left;
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
}
/* last 2 cards: centered in 6-col grid (cols 2â€“4 and 4â€“6) */
.why-card:nth-child(4) { grid-column: 2 / 4; }
.why-card:nth-child(5) { grid-column: 4 / 6; }
.why-card__icon {
  width:           80px;
  height:          80px;
  background:      var(--white);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   1.25rem;
  color:           var(--gold);
  font-size:       1.875rem;
  flex-shrink:     0;
  align-self:      flex-start;
}
.why-card h4 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.25rem; }
.why-card p  { color: var(--white); font-size: 1rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOW IT WORKS â€” 5-STEP PROCESS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-process {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.process-steps {
  display:               grid;
  grid-template-columns: repeat(5, 1fr);
  gap:                   clamp(1rem, 2vw, 1.5rem);
  position:              relative;
}
.process-steps::before {
  content:    '';
  position:   absolute;
  top:        50px;
  left:       10%;
  width:      80%;
  height:     1px;
  background: var(--gold);
  z-index:    0;
}
.process-step {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  position:       relative;
  z-index:        1;
}
.process-step__num {
  width:           100px;
  height:          100px;
  background:      url('img/step-no-bg.jpg') center / contain no-repeat;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       1.5rem;
  font-weight:     800;
  color:           var(--gold);
  margin-bottom:   1rem;
  flex-shrink:     0;
}
.process-step h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--dark); }
.process-step p  { font-size: 1rem; color: var(--dark); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ / ACCORDION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-faq {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: #f5f0e8;
}
.faq-list {
  max-width: 100%;
}
.faq-item { border-bottom: 1px solid #e3d3aa; }
.faq-item:first-child { border-top: 1px solid #e3d3aa; }

.faq-toggle {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  width:           100%;
  background:      none;
  border:          none;
  padding:         1.25rem 0;
  font-family:     var(--font);
  font-size:       1.25rem;
  font-weight:     600;
  color:           var(--dark);
  text-align:      left;
  cursor:          pointer;
  gap:             1rem;
  transition:      color var(--ease);
}
.faq-toggle:hover { color: var(--gold); }
.faq-toggle[aria-expanded="true"] { color: var(--gold); }

.faq-toggle__icon {
  font-size:  1.25rem;
  color:      var(--gold);
  flex-shrink: 0;
  transition: transform var(--ease);
  line-height: 1;
}
.faq-toggle[aria-expanded="true"] .faq-toggle__icon { transform: rotate(45deg); }

.faq-answer {
  overflow:   hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer.is-open { max-height: 400px; }
.faq-answer__inner {
  padding-bottom: 1.25rem;
  font-size:      1rem;
  color:          var(--dark);
  line-height:    1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS SLIDER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-testimonials {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
 background: rgba(184,149,42,0.03);
}
.testimonials-slider { position: relative; padding: 0 2.5rem; }

.testimonial-card {
  padding:     0 2rem;
  border-right: 1px solid var(--border);
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card__inner {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}
.testimonial-card__quote {
  font-size:     2.5rem;
  color:         var(--gold);
  line-height:   1;
  margin-bottom: 0.75rem;
}
.testimonial-card__quote i {
  font-size: 2.5rem;
  color:     var(--gold);
}
.testimonial-card__text {
  font-size:     1rem;
  color:         var(--dark);
  line-height:   1.75;
  margin-bottom: 1rem;
}
.testimonial-card__meta {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            0.35rem;
}
.testimonial-card__author {
  font-weight: 700;
  font-size:   1rem;
  color:       var(--dark);
}
.testimonial-card__author span {
  font-weight: 400;
  color:       var(--dark);
}
.testimonial-card__stars {
  color:      #f6bb06;
  font-size:  1rem;
  display:    flex;
  gap:        2px;
  margin-top: 0.25rem;
}
.padd-top-zero{
    padding-top: 0 !important;
}
.padd-bottom-zero{
    padding-bottom: 0 !important;
}
.padd-zero{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
/* Slick overrides for testimonials */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  width:           2.75rem;
  height:          2.75rem;
  background:      #f4efdf;
  border-radius:   100%;
  z-index:         2;
  transition:      background var(--ease), color var(--ease);
  border:          none;
  color:           var(--dark);
  display:         flex !important;
  align-items:     center;
  justify-content: center;
  font-size:       0.9rem;
  line-height:     1;
}
.testimonials-slider .slick-prev { left: 0; }
.testimonials-slider .slick-next { right: 0; }
.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
  background:  var(--gold);
  color:       var(--white);
}
.testimonials-slider .slick-dots { bottom: -2rem; }
.testimonials-slider .slick-dots li button::before { color: var(--dark); }
.testimonials-slider .slick-dots li.slick-active button::before { color: var(--gold); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  background:  var(--dark);
  color:       var(--white);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.site-footer__grid {
  display:               grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap:                   clamp(2rem, 4vw, 3.5rem);
  padding-bottom:        clamp(2.5rem, 4vw, 3.5rem);
  border-bottom:         1px solid rgba(255,255,255,.1);
}

/* Column 1 â€” logo only */
.footer-col__logo { display: block; }
/* Paste SVG directly inside the <a class="footer-col__logo"> tag */
.footer-col__logo svg,
.footer-col__logo img {
  height:    auto;
  max-height: 80px;
  width:     auto;
  display:   block;
}

/* Column headings */
.footer-col h3 {
  color:         var(--gold);
  font-size:     1rem;
  font-weight:   700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

/* Nav/blog links with arrow â€” icon via ::before */
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  font-size:   1rem;
  color:       var(--white);
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  transition:  color var(--ease);
}
.footer-col ul a::before {
  content:     '\f105'; /* fa-angle-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size:   0.7rem;
  color:       var(--gold);
  flex-shrink: 0;
  transition:  color var(--ease);
}
.footer-col ul a:hover { color: var(--gold); }

/* Blog posts in footer â€” icon via ::before */
.footer-post { margin-bottom: 0.75rem; }
.footer-post a {
  font-size:   1rem;
  color:       var(--white);
  display:     flex;
  align-items: flex-start;
  gap:         0.5rem;
  transition:  color var(--ease);
  line-height: 1.5;
}
.footer-post a::before {
  content:     '\f105'; /* fa-angle-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size:   0.7rem;
  color:       var(--gold);
  flex-shrink: 0;
  margin-top:  0.35rem;
  transition:  color var(--ease);
}
.footer-post a:hover { color: var(--gold); }

/* Contact info â€” no icons */
.footer-contact-item {
  font-size:     1rem;
  color:         var(--white);
  margin-bottom: 0.75rem;
  line-height:   1.5;
}
.footer-contact-item a { color: var(--white); transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--gold); }

/* Social icons â€” in contact column at bottom */
.footer-social {
  display:    flex;
  gap:        0.625rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width:           2.25rem;
  height:          2.25rem;
  background:      rgba(255,255,255,.08);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--white);
  font-size:       0.875rem;
  transition:      background var(--ease), color var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-social a span, .contact-social a span {
    display: none;
}
.footer-contact-item p {
  color:           var(--white);
}

/* Copyright */
.site-footer__bottom {
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         1.25rem 0;
  font-size:       1rem;
  color:           var(--white);
  text-align:      center;
  gap:             0.5rem;
}
.site-footer__bottom a { color: var(--gold); }
.site-footer__bottom a:hover { text-decoration: underline; }

.site-footer__bottom p{
  color:           var(--white);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INTERNAL PAGE SHARED STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-hero {
  background: var(--dark);
  padding:    clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position:   relative;
  overflow:   hidden;
}
.page-hero::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: url('img/heroslider01.jpg') center / cover;
  opacity:    0.2;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }

/* CTA Band */
.cta-band {
  background: var(--gold);
  padding:    clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p  { color: var(--white); margin-bottom: 1.75rem; }
.cta-band .btn { background: var(--white); color: var(--dark); border-color: var(--white); }
.cta-band .btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

/* â”€â”€ Internal Page Banner (200px, solid dark bg, centered title) â”€â”€ */
.page-banner {
  background:      var(--dark);
  min-height:      200px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  position:        relative;
  overflow:        hidden;
}
/* subtle decorative overlay for depth */
.page-banner::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(184,149,42,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner__title {
  color:         var(--white);
  font-size:     clamp(1.875rem, 4vw, 3rem);
  font-weight:   700;
  margin-bottom: 0;
  line-height:   1.2;
}

/* â”€â”€ Breadcrumb Bar â”€â”€ */
.breadcrumb-bar {
  background:    var(--off-white);
  border-bottom: 1px solid var(--border);
  padding:       0.75rem 0;
}
.breadcrumb-list {
  display:     flex;
  align-items: center;
  flex-wrap:   wrap;
  gap:         0.5rem;
  margin:      0;
  padding:     0;
  list-style:  none;
}
.breadcrumb-list li {
  display:     flex;
  align-items: center;
  font-size:   0.9375rem;
  color:       var(--dark);
}
.breadcrumb-list li a {
  color:      var(--gold);
  font-weight: 500;
  transition: color var(--ease);
}
.breadcrumb-list li a:hover { color: var(--dark); }
.breadcrumb-list li i {
  font-size: 0.6875rem;
  color:     #aaa;
}
.breadcrumb-list li span {
  font-weight: 500;
  color:       var(--dark);
}

.breadcrumb {
     display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    color: var(--dark);
}
.breadcrumb li a {
    color: var(--gold);
    font-weight: 500;
    transition: color var(--ease);
}

.breadcrumb a:active,
.breadcrumb a:focus,
.breadcrumb a:hover {
    color: var(--gold);

}
.breadcrumb li.active{
  font-weight: 500;
  color: var(--gold);

}
.breadcrumb>li+li::before {
    padding: 0 5px;
    color: #000;
    content: "\f054";
    font-family: Font Awesome\ 6 Free;
    font-weight: 700;
  font-size: 0.75em;
}
.breadcrumb .post {
    border: none;
    float: inherit;
    margin: 0;
    width: auto;
    background: none;
    padding: 0;
    box-shadow: none;
}

.breadcrumb li span .current-item {
        font-weight: 500;
    color: var(--dark);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Visually hidden utility â€” ADA / screen readers */
.visually-hidden {
  position:   absolute;
  width:      1px;
  height:     1px;
  padding:    0;
  margin:     -1px;
  overflow:   hidden;
  clip:       rect(0, 0, 0, 0);
  white-space: nowrap;
  border:     0;
}

.section-blog {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}

/* Two-column: posts left, sidebar right */
.blog-layout {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   clamp(2rem, 4vw, 3.5rem);
  align-items:           start;
}

/* â”€â”€ Blog Post Card â”€â”€ */
.blog-post-card {
  display:       flex;
  gap:           clamp(1.25rem, 2vw, 1.75rem);
  padding:       clamp(1.25rem, 2.5vw, 2rem);
  background:    var(--white);
  border:        1px solid #eee;
  box-shadow:    0 2px 12px rgba(0,0,0,.07);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  transition:    box-shadow var(--ease), transform var(--ease);
}
.blog-post-card:last-child { margin-bottom: 0; }
.blog-post-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform:  translateY(-3px);
}

/* Thumbnail */
.blog-post-card__img {
  flex-shrink:  0;
  width:        clamp(180px, 22vw, 260px);
  aspect-ratio: 4 / 3;
  overflow:     hidden;
}
.blog-post-card__img a { display: block; height: 100%; }
.blog-post-card__img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.5s ease;
}
.blog-post-card:hover .blog-post-card__img img { transform: scale(1.06); }

/* Content side */
.blog-post-card__content {
  flex:           1;
  display:        flex;
  flex-direction: column;
  min-width:      0;
}

/* Meta row â€” date and author (below title) */
.blog-post-card__meta {
  display:       flex;
  flex-wrap:     wrap;
  align-items:   center;
  gap:           0.65rem;
  margin-bottom: 0.75rem;
}
.blog-post-card__date,
.blog-post-card__author {
  display:     flex;
  align-items: center;
  gap:         0.35rem;
  color:       #777;
  font-size:   0.875rem;
}
.blog-post-card__date i,
.blog-post-card__author i { color: var(--gold); font-size: 0.8rem; }

/* Title */
.blog-post-card__title {
  font-size:     1.25rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
  line-height:   1.3;
}
.blog-post-card__title a { color: var(--dark); transition: color var(--ease); }
.blog-post-card__title a:hover { color: var(--gold); }

/* Excerpt â€” clamped to 3 lines */
.blog-post-card__excerpt {
  font-size:          1rem;
  color:              var(--dark);
  line-height:        1.7;
  margin-bottom:      1.25rem;
  flex:               1;
  display:            -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:           hidden;
}

/* Read More button â€” smaller footprint inside card */
.blog-post-card__content .btn {
  padding:    0.6rem 1.5rem;
  font-size:  0.875rem;
  min-width:  auto;
  align-self: flex-start;
}

/* â”€â”€ Pagination â”€â”€ */
.blog-pagination {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             1rem;
  margin-top:      clamp(1.5rem, 3vw, 2.5rem);
  padding-top:     clamp(1.5rem, 3vw, 2.5rem);
  border-top:      1px solid #eee;
  flex-wrap:       wrap;
}
.blog-pagination__prev,
.blog-pagination__next {
  display:     inline-flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   0.9375rem;
  font-weight: 600;
  color:       var(--dark);
  transition:  color var(--ease);
  white-space: nowrap;
}
.blog-pagination__prev:hover,
.blog-pagination__next:hover { color: var(--gold); }
.blog-pagination__prev i,
.blog-pagination__next i { font-size: 0.85rem; color: var(--gold); }

.blog-pagination__pages {
  display:     flex;
  align-items: center;
  gap:         0.375rem;
  margin:      0;
  flex-wrap:   wrap;
}
.blog-pagination__pages li { list-style: none; }
.blog-pagination__pages li a,
.blog-pagination__pages li span {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           2.25rem;
  height:          2.25rem;
  font-size:       0.9375rem;
  font-weight:     600;
  color:           var(--dark);
  border:          1px solid #ddd;
  transition:      background var(--ease), color var(--ease), border-color var(--ease);
}
.blog-pagination__pages li a:hover {
  background:   var(--gold);
  color:        var(--white);
  border-color: var(--gold);
}
.blog-pagination__pages li a.is-active {
  background:   var(--gold);
  color:        var(--white);
  border-color: var(--gold);
}
.blog-pagination__ellipsis {
  border: none !important;
  color:  #aaa;
  font-weight: 400;
}

/* â”€â”€ Sidebar â”€â”€ */
.blog-sidebar {
  position:       sticky;
  top:            calc(90px + 1.5rem);
  display:        flex;
  flex-direction: column;
  gap:            clamp(1.5rem, 3vw, 2rem);
}

.sidebar-widget {
  background: var(--white);
  border:     1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  padding:    clamp(1.5rem, 2.5vw, 2rem);
}
.sidebar-widget--form { background: var(--dark); }
.sidebar-widget--form p { color: var(--white); margin-bottom: 1rem; }

.sidebar-widget__title {
  font-size:      1rem;
  font-weight:    700;
  color:          var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom:  1rem;
  padding-bottom: 0.75rem;
  border-bottom:  2px solid var(--gold);
}

/* Sidebar form â€” stacked single column, reuses .form-field base styles */
.sidebar-widget .form-field { margin-bottom: 0.875rem; }
.sidebar-widget .form-field label { display: none; }
.sidebar-widget .form-field input,
.sidebar-widget .form-field textarea {
  width:        100%;
  padding:      0.7rem 1rem;
  border:       1px solid rgba(255,255,255,.15);
  border-radius: 0;
  font-size:    0.9375rem;
  font-family:  var(--font);
  color:        var(--dark);
  background:   #fbfaf4;
  transition:   border-color var(--ease);
  outline:      none;
}
.sidebar-widget .form-field input:focus,
.sidebar-widget .form-field textarea:focus { border-color: var(--gold); }
.sidebar-widget .form-field input::placeholder,
.sidebar-widget .form-field textarea::placeholder { color: var(--dark); opacity: 0.6; }
.sidebar-widget .form-field textarea { min-height: 100px; resize: vertical; }
.sidebar-widget .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* Categories / Archives list */
.sidebar-cat-list { margin: 0; padding: 0; }
.sidebar-cat-list li { border-bottom: 1px solid #f0ece2; }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list li a {
  display:         flex;
  align-items:     center;
  padding:         0.6rem 0;
  font-size:       0.9375rem;
  font-weight:     500;
  color:           var(--dark);
  transition:      color var(--ease), padding-left var(--ease);
  gap:             0.5rem;
}
.sidebar-cat-list li a:hover { color: var(--gold); padding-left: 0.375rem; }
.sidebar-cat-list li a::before {
  content:     '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size:   0.65rem;
  color:       var(--gold);
  flex-shrink: 0;
}
.sidebar-cat-list li a span { display: none; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG DETAIL PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-detail__hero-img {
  width:         100%;
  aspect-ratio:  16 / 9;
  overflow:      hidden;
  margin-bottom: 1.5rem;
}
.blog-detail__hero-img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}
.blog-detail__meta {
  display:       flex;
  flex-wrap:     wrap;
  gap:           0.75rem;
  margin-bottom: 1rem;
}
.blog-detail__title {
  font-size:     clamp(1.5rem, 3vw, 2rem);
  font-weight:   700;
  line-height:   1.25;
  margin-bottom: 1.5rem;
  color:         var(--dark);
}
.blog-detail__body h3 {
  font-size:     1.375rem;
  margin-top:    1.75rem;
  margin-bottom: 0.75rem;
  color:         var(--dark);
}
.blog-detail__body ul {
  padding-left:  1.25rem;
  margin-bottom: 1.25rem;
}
.blog-detail__body ul li {
  list-style:    disc;
  font-size:     1rem;
  color:         var(--dark);
  line-height:   1.7;
  margin-bottom: 0.4rem;
}
.blog-detail__back {
  margin-top:    2rem;
  padding-top:   1.5rem;
  border-top:    1px solid #eee;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ PAGE (two-column layout)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-faq-page {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: #f5f0e8;
}
.faq-page-col .section-header { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GALLERY PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-gallery {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.gallery-grid {
  display:               grid;
  grid-template-columns: repeat(5, 1fr);
  gap:                   clamp(0.5rem, 1vw, 0.75rem);
}
.gallery-item {
  position:     relative;
  overflow:     hidden;
  aspect-ratio: 4 / 3;
  background:   var(--dark);
}
.gallery-item a {
  display: block;
  height:  100%;
}
.gallery-item img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  opacity:   0.75;
}
.gallery-item__overlay {
  position:        absolute;
  inset:           0;
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--white);
  font-size:       1.75rem;
  opacity:         0;
  transition:      opacity var(--ease);
  pointer-events:  none;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-about-page {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.about-page-grid {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   clamp(2rem, 4vw, 3.5rem);
  align-items:           start;
}
.about-page-sidebar {
  position: sticky;
  top:      calc(90px + 1.5rem);
}
.about-page-content h2 {
  font-size:     clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.about-page-content h3 {
  font-size:     1.375rem;
  margin-top:    1.75rem;
  margin-bottom: 0.75rem;
}
.about-page-img {
  width:         100%;
  overflow:      hidden;
  margin-bottom: 1.75rem;
  aspect-ratio:  16 / 9;
}
.about-page-img img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}
.about-page-list {
  list-style:    none;
  padding:       0;
  margin-bottom: 1.5rem;
}
.about-page-list li {
  display:       flex;
  align-items:   center;
  gap:           0.75rem;
  font-size:     1rem;
  color:         var(--dark);
  padding:       0.5rem 0;
  border-bottom: 1px solid #f0ece2;
}
.about-page-list li:last-child { border-bottom: none; }
.about-page-list li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* Stats row inside About page */
.about-page-stats {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   1rem;
  margin-top:            2rem;
  border:                1px solid var(--gold);
}
.about-page-stat {
  text-align:      center;
  padding:         1.25rem 0.75rem;
  border-right:    1px solid var(--gold);
}
.about-page-stat:last-child { border-right: none; }
.about-page-stat__value {
  font-size:   1.75rem;
  font-weight: 700;
  color:       var(--dark);
  line-height: 1;
}
.about-page-stat__value span { font-size: 0.65em; font-weight: 700; }
.about-page-stat__label {
  font-size:      0.8125rem;
  font-weight:    600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color:          var(--dark);
  margin-top:     0.4rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-contact {
  padding:    clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   clamp(2rem, 4vw, 4rem);
  align-items:           center;
  margin-bottom:         clamp(2.5rem, 5vw, 4rem);
}

/* Contact info column */
.contact-info__block {
  display:       flex;
  gap:           1.25rem;
  align-items:   flex-start;
  margin-bottom: 1.75rem;
}
.contact-info__block:last-child { margin-bottom: 0; }
.contact-info__icon {
  width:           3rem;
  height:          3rem;
  background:      var(--gold);
  color:           var(--white);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       1.125rem;
  flex-shrink:     0;
}
.contact-info__detail h4 {
  font-size:     1rem;
  font-weight:   700;
  color:         var(--dark);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-info__detail p {
  font-size:     1rem;
  color:         var(--dark);
  margin:        0;
  line-height:   1.6;
}
.contact-info__detail a { color: var(--dark); transition: color var(--ease); }
.contact-info__detail a:hover { color: var(--gold); }

/* Social inside contact info */
.contact-social {
  display:    flex;
  gap:        0.5rem;
  margin-top: 0.5rem;
}
.contact-social a {
  width:           2.25rem;
  height:          2.25rem;
  background:      var(--dark);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--white);
  font-size:       0.875rem;
  transition:      background var(--ease);
}
.contact-social a:hover { background: var(--gold); }

/* Contact form column */
.contact-form-wrap {
  background: var(--white);
  box-shadow: 0 0 30px rgba(15,32,68,.12);
  padding:    clamp(1.75rem, 3vw, 2.5rem);
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 1.5rem; }
.contact-form-submit { margin-top: 0.5rem; }
.contact-form-submit .btn { min-width: 200px; }

/* Google Map */
.contact-map {
  width:    100%;
  overflow: hidden;
  border:   1px solid #eee;
}
.contact-map iframe { display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE NAV â€” site-header__nav becomes the drawer at â‰¤1199px
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mobile-nav__overlay {
  display:        none;
  position:       fixed;
  inset:          0;
  background:     rgba(0,0,0,.5);
  z-index:        840;
  opacity:        0;
  pointer-events: none;
  transition:     opacity 0.35s;
}
.mobile-nav__overlay.is-open {
  opacity:        1;
  pointer-events: auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MEDIA QUERIES â€” max-width
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1700px) {
    .site-header .container--wide {
  padding-left: 20px;
  padding-right: 20px;
}
}
@media (max-width: 1280px) {
  .hero__text-col { width: 400px; padding: 2.5rem 2rem; }
  .process-steps { gap: 0.75rem; }
  .process-step__num { width: 80px; height: 80px; font-size: 1.25rem; }
}

/* â”€â”€ Hamburger kicks in at 1199px â”€â”€ */
@media (max-width: 1199px) {
  .site-header { padding: 10px 0; }
  .nav-toggle { display: flex; }
  .mobile-nav__overlay { display: block; }

  /* Nav becomes a fixed slide-in drawer */
  .site-header__nav {
    display:    block;
    position:   fixed;
    inset:      0 0 0 auto;
    width:      min(320px, 85vw);
    background: var(--white);
    z-index:    850;
    box-shadow: -4px 0 32px rgba(0,0,0,.15);
    padding:    3.5rem 1.5rem 2rem; /* extra top for close button */
    overflow-y: auto;
    transform:  translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  }
  .site-header__nav.is-open { transform: translateX(0); }

  /* Close button â€” visible only on mobile */
  .nav-close { display: flex; }

  /* Top-level ul â€” stack vertically */
  .site-header__nav > ul {
    display:        flex;
    flex-direction: column;
    align-items:    stretch;
    gap:            0;
    margin-top:     2rem;
  }

  /* Every top-level li gets a bottom border and flex row */
  .site-header__nav > ul > li {
    display:       flex;
    flex-wrap:     wrap;
    align-items:   center;
    border-bottom: 1px solid var(--border);
  }
  .site-header__nav > ul > li > a {
    flex:           1;
    padding:        0.65rem 0;
    font-size:      1rem;
    font-weight:    600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color:          var(--dark);
    white-space:    normal;
    display:        block;
  }
  .site-header__nav > ul > li > a::after { display: none; }

  /* sub-toggle: reset desktop absolute positioning, make interactive in-flow */
  .sub-toggle {
    display:        inline-flex;
    align-items:    center;
    position:       static;
    transform:      none;
    padding:        0.65rem 0.5rem;
    color:          var(--gold);
    font-size:      0.75rem;
    cursor:         pointer;
    flex-shrink:    0;
    pointer-events: auto;
    width:          auto;
    height:         auto;
    top:            auto;
    right:          auto;
  }
  .sub-toggle[aria-expanded="true"] { transform: rotate(180deg); }

  /* Reset desktop padding-right added to parent <a> tags */
  .site-header__nav > ul > li:has(> ul) > a,
  .site-header__nav ul li > ul > li:has(> ul) > a { padding-right: 0; position: static; }

  /* Dropdown ul â€” hidden, full-width accordion */
  .site-header__nav ul li > ul {
    position:   static;
    display:    none;
    opacity:    1;
    visibility: visible;
    transform:  none;
    box-shadow: none;
    border-top: 1px solid var(--border);
    border-left: none;
    background: var(--off-white);
    width:      100%;
    padding:    0 0 0 1rem;
    min-width:  0;
    flex-basis: 100%;
  }
  .site-header__nav ul li > ul.is-open { display: block; }

  /* Nested li â€” flex row */
  .site-header__nav ul li > ul > li {
    display:       flex;
    flex-wrap:     wrap;
    align-items:   center;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .site-header__nav ul li > ul > li:last-child { border-bottom: none; }
  .site-header__nav ul li > ul > li > a {
    flex:           1;
    padding:        0.55rem 0;
    font-size:      0.9rem;
    font-weight:    500;
    color:          var(--dark);
    text-transform: none;
    letter-spacing: 0;
    white-space:    normal;
    background:     none;
  }
  .site-header__nav ul li > ul > li > a:hover { background: none; color: var(--gold); }

  /* Level-2 indent */
  .site-header__nav ul li > ul > li > ul { background: #ece8dc; padding-left: 0.75rem; }
  .site-header__nav ul li > ul > li > ul > li > a { font-size: 0.85rem; color: #555; }

  /* Override hover-open on mobile â€” only .is-open matters */
  .site-header__nav ul li:has(> ul):hover > ul,
  .site-header__nav ul li:has(> ul):focus-within > ul {
    opacity:    1;
    visibility: visible;
    /* still display:none until .is-open â€” JS controls it */
  }

  /* CTA button full width */
  .site-header__nav .btn {
    width:           100%;
    justify-content: center;
    margin-left:     0;
    margin-top:      1.5rem;
  }
}

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr 280px; }
  .about-page-grid { grid-template-columns: 1fr 280px; }
  .about-page-sidebar { position: static; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .about-page-stats { grid-template-columns: repeat(2, 1fr); }
  .about-page-stat:nth-child(2) { border-right: none; }
  .about-page-stat:nth-child(1),
  .about-page-stat:nth-child(2) { border-bottom: 1px solid var(--gold); }

  .hero { flex-direction: column;}
  .hero__text-col { width: 100%; padding: 3rem 2rem; }
  /* Hero slider must have explicit height when stacked */
  .hero__slider-col { height: 480px; width: 100%; }
  .hero__slider-col .slick-slider,
  .hero__slider-col .slick-list,
  .hero__slider-col .slick-track,
  .hero__slider-col .slick-slide,
  .hero__slider-col .slick-slide > div { height: 100%; }

  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .why-card { grid-column: span 2 !important; }
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: span 2 !important; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .section-about__grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .about-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .section-faq-page .blog-layout { grid-template-columns: 1fr; }

    .stats-bar__item:nth-child(1),
    .stats-bar__item:nth-child(2){
  border-bottom: 1px solid var(--gold);
}
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .section-about__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { grid-column: span 1 !important; }
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: span 1 !important; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr; }
  h2, .section-header h2 { font-size: 2rem; }
 .faq-toggle {
  padding: 1.0rem 0;
  font-size: 1.0rem;
}
}

@media (max-width: 640px) {
.blog-post-card { flex-direction: column; }
.blog-post-card__img { width: 100%; aspect-ratio: 16 / 9; }
.testimonials-slider {
  padding: 0;
}
    .testimonial-card {
  padding: 0;
  border-right: none;
}
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page-stats { grid-template-columns: repeat(2, 1fr); }
    .site-header__logo {
  max-width: 260px;
}
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card,
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: span 1 !important; }
  .process-steps { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 0.25rem; }
  .testimonials-slider .slick-prev,
  .testimonials-slider .slick-next { display: none !important; }
  h2, .section-header h2, .about-story h3, .about-form h3, .product-card__body h3 { font-size: 1.5rem; }
}