/* =========================================
   HF SOFA REPAIR - HEADER
========================================= */

:root {
    --espresso: #2B211C;
    --gold: #C49A52;
    --gold-dark: #A77E3C;
    --ivory: #F8F5EF;
    --white: #FFFFFF;
    --border: rgba(43, 33, 28, 0.12);
}


/* HEADER */

.site-header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    min-height: 92px;
    margin: auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 235px;
    height: auto;
    display: block;
}


/* DESKTOP NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.main-nav a {
    position: relative;

    text-decoration: none;
    color: var(--espresso);

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;

    padding: 34px 0;

    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-dark);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 24px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


/* HEADER BUTTONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-btn,
.whatsapp-btn {
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;
    padding: 0 20px;

    border-radius: 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.call-btn {
    background: var(--espresso);
    color: var(--white);
}

.call-btn:hover {
    background: var(--gold);
    color: var(--espresso);
}

.call-icon {
    font-size: 17px;
    margin-right: 8px;
}

.whatsapp-btn {
    background: var(--gold);
    color: var(--espresso);
    border: 1px solid var(--gold);
}

.whatsapp-btn:hover {
    background: var(--espresso);
    color: var(--white);
    border-color: var(--espresso);
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--espresso);

    transition: all 0.3s ease;
}


/* MOBILE NAV */

.mobile-nav {
    display: none;

    background: var(--white);

    padding: 10px 20px 25px;

    border-top: 1px solid var(--border);
}

.mobile-nav a {
    display: block;

    padding: 15px 5px;

    text-decoration: none;

    color: var(--espresso);

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;

    border-bottom: 1px solid var(--border);
}

.mobile-nav a.active {
    color: var(--gold-dark);
}


/* MOBILE CTA */

.mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    padding-top: 20px;
}

.mobile-call,
.mobile-whatsapp {
    text-align: center;

    border-radius: 4px !important;

    padding: 14px 10px !important;

    border: none !important;
}

.mobile-call {
    background: var(--espresso);
    color: var(--white) !important;
}

.mobile-whatsapp {
    background: var(--gold);
    color: var(--espresso) !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .header-container {
        padding: 0 25px;
    }

    .brand-logo img {
        width: 205px;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .call-btn,
    .whatsapp-btn {
        padding: 0 14px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .header-container {
        min-height: 76px;
        padding: 0 18px;
    }

    .brand-logo img {
        width: 185px;
        max-width: 70vw;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav.active {
        display: block;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .header-container {
        min-height: 70px;
        padding: 0 15px;
    }

    .brand-logo img {
        width: 165px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-actions {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   HF SOFA REPAIR
   PREMIUM HERO SECTION
========================================== */

.hero-section {
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 92px);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(196, 154, 82, 0.10),
            transparent 28%
        ),
        var(--ivory);

    display: flex;
    align-items: center;
}


/* =========================
   DECORATIVE GLOW
========================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}

.hero-glow-one {
    width: 420px;
    height: 420px;

    right: -180px;
    top: -150px;

    border: 1px solid rgba(196, 154, 82, 0.25);
}

.hero-glow-two {
    width: 260px;
    height: 260px;

    left: -180px;
    bottom: -130px;

    border: 1px solid rgba(43, 33, 28, 0.08);
}


/* =========================
   CONTAINER
========================= */

.hero-container {
    position: relative;
    z-index: 2;

    width: min(1380px, 100%);

    margin: auto;

    padding: 90px 45px 75px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(500px, 1.05fr);

    align-items: center;

    gap: 70px;
}


/* =========================
   CONTENT
========================= */

.hero-content {
    max-width: 650px;
}


/* EYEBROW */

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 25px;

    color: var(--gold-dark);

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.eyebrow-line {
    width: 42px;
    height: 2px;

    background: var(--gold);
}


/* HEADING */

.hero-content h1 {
    margin: 0;

    color: var(--espresso);

    font-family: "Playfair Display", serif;

    font-size: clamp(52px, 5.5vw, 86px);

    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -3px;
}

.hero-content h1 span {
    display: block;

    color: var(--gold-dark);

    font-style: italic;
}


/* DESCRIPTION */

.hero-description {
    max-width: 610px;

    margin: 30px 0 34px;

    color: #655C55;

    font-family: "DM Sans", sans-serif;

    font-size: 17px;

    line-height: 1.8;
}

.hero-description strong {
    color: var(--espresso);
    font-weight: 700;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;

    gap: 13px;

    margin-bottom: 42px;
}

.hero-btn {
    min-height: 64px;

    padding: 9px 23px;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-weight: 700;

    border-radius: 4px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}


/* PRIMARY */

.hero-btn-primary {
    color: var(--white);

    background: var(--espresso);

    box-shadow:
        0 12px 30px rgba(43, 33, 28, 0.15);
}

.hero-btn-primary:hover {
    background: #3A2D25;

    box-shadow:
        0 18px 35px rgba(43, 33, 28, 0.22);
}


/* SECONDARY */

.hero-btn-secondary {
    color: var(--espresso);

    background: transparent;

    border: 1px solid rgba(43, 33, 28, 0.25);
}

.hero-btn-secondary:hover {
    background: var(--gold);
    border-color: var(--gold);
}


/* BUTTON TEXT */

.hero-btn span:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;

    font-size: 15px;
}

.hero-btn small {
    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1px;

    opacity: 0.65;

    text-transform: uppercase;
}

.btn-icon,
.whatsapp-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 17px;
}

.btn-icon {
    background: var(--gold);
    color: var(--espresso);
}

.whatsapp-icon {
    background: var(--espresso);
    color: var(--gold);
}


/* =========================
   TRUST ITEMS
========================= */

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 28px;

    padding-top: 27px;

    border-top: 1px solid rgba(43, 33, 28, 0.12);
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 9px;
}

.trust-check {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(196, 154, 82, 0.17);

    color: var(--gold-dark);

    font-size: 13px;

    font-weight: 800;
}

.trust-item div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.trust-item strong {
    color: var(--espresso);

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
}

.trust-item small {
    color: #82776F;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;

    min-height: 610px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* IMAGE */

.hero-image-frame {
    position: relative;

    width: 88%;

    height: 570px;

    overflow: hidden;

    border-radius: 4px;

    box-shadow:
        0 30px 70px rgba(43, 33, 28, 0.18);
}

.hero-image-frame::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    border: 1px solid rgba(255, 255, 255, 0.35);

    pointer-events: none;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.035);
}

.image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(43, 33, 28, 0.18)
        );

    z-index: 1;
}


/* =========================
   SERVICE CARD
========================= */

.hero-service-card {
    position: absolute;

    left: 0;

    bottom: 55px;

    z-index: 5;

    min-width: 280px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: rgba(255, 255, 255, 0.96);

    border-left: 4px solid var(--gold);

    box-shadow:
        0 18px 45px rgba(43, 33, 28, 0.15);

    backdrop-filter: blur(12px);

    animation: floatingCard 4s ease-in-out infinite;
}

.service-card-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #F5E8C9;

    color: var(--gold-dark);

    font-size: 20px;
}

.hero-service-card strong {
    display: block;

    color: var(--espresso);

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    margin-bottom: 4px;
}

.hero-service-card span {
    display: block;

    color: #847970;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
}


/* =========================
   SIDE BADGE
========================= */

.hero-side-badge {
    position: absolute;

    right: -8px;
    top: 80px;

    width: 48px;
    height: 165px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--espresso);

    color: var(--gold);

    writing-mode: vertical-rl;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    border-radius: 3px;
}


/* =========================
   GOLD CIRCLE
========================= */

.hero-circle {
    position: absolute;

    right: 2px;
    bottom: 15px;

    width: 145px;
    height: 145px;

    border: 2px solid var(--gold);

    border-radius: 50%;

    z-index: 1;
}

.hero-circle::after {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    top: 12px;
    right: 3px;

    border-radius: 50%;

    background: var(--gold);
}


/* =========================
   SCROLL
========================= */

.hero-scroll {
    position: absolute;

    left: 45px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #958A81;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 2px;
}

.scroll-line {
    width: 55px;
    height: 1px;

    background: var(--gold);
}


/* =========================
   ANIMATION
========================= */

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .hero-container {
        grid-template-columns: 1fr 0.9fr;

        gap: 35px;

        padding: 70px 30px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-image-frame {
        width: 92%;
        height: 500px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-side-badge {
        right: -3px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 60px 20px 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(45px, 12vw, 65px);

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;

        line-height: 1.7;

        margin-top: 24px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        margin-bottom: 30px;
    }

    .hero-btn {
        width: 100%;

        justify-content: center;
    }

    .hero-trust {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-image-frame {
        width: 92%;

        height: 460px;
    }

    .hero-service-card {
        left: 0;

        bottom: 35px;

        min-width: 250px;

        padding: 15px 17px;
    }

    .hero-side-badge {
        right: 0;

        top: 40px;

        width: 40px;
        height: 135px;
    }

    .hero-circle {
        width: 105px;
        height: 105px;

        right: 0;
    }

    .hero-scroll {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-container {
        padding: 45px 15px 65px;
    }

    .hero-eyebrow {
        font-size: 10px;

        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-image-frame {
        height: 390px;

        width: 94%;
    }

    .hero-service-card {
        min-width: 220px;

        bottom: 20px;
    }

    .service-card-icon {
        width: 36px;
        height: 36px;
    }

    .hero-side-badge {
        display: none;
    }

}

/* ================= ABOUT SECTION ================= */

.about-section {
  background: #f8f5ef;
  padding: 110px 7%;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(184, 134, 54, 0.18);
  border-radius: 50%;
  top: -180px;
  right: -100px;
}

.about-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* CONTENT */

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a8782c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.about-tag::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #b8893c;
}

.about-content h2 {
  margin: 0 0 25px;
  color: #2d211b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -2px;
}

.about-content h2 span {
  display: block;
  color: #a8782c;
  font-style: italic;
}

.about-content p {
  color: #665c55;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 16px;
  max-width: 620px;
}

.about-content .about-intro {
  color: #3f3530;
  font-size: 18px;
  line-height: 1.8;
}

.about-content strong {
  color: #2d211b;
}

/* FEATURES */

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  margin: 35px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.feature-icon {
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #b8893c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.about-feature h4 {
  margin: 0 0 5px;
  color: #30231c;
  font-size: 15px;
}

.about-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

/* BUTTON */

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 16px 22px 16px 27px;
  background: #30231c;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 3px;
  transition: all .3s ease;
}

.about-btn span {
  width: 32px;
  height: 32px;
  background: #b8893c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-btn:hover {
  background: #b8893c;
  transform: translateY(-3px);
}

.about-btn:hover span {
  background: #30231c;
}

/* ================= IMAGE ================= */

.about-visual {
  position: relative;
  padding: 15px 15px 50px 25px;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(45, 33, 27, 0.16);
}

.about-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 137, 60, .5);
  pointer-events: none;
}

.about-image-wrapper img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

/* EXPERIENCE CARD */

.experience-card {
  position: absolute;
  left: -15px;
  bottom: 35px;
  background: #fff;
  padding: 18px 27px;
  min-width: 150px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
  border-left: 4px solid #b8893c;
}

.experience-card strong {
  display: block;
  color: #30231c;
  font-size: 15px;
}

.experience-card span {
  display: block;
  margin-top: 4px;
  color: #a8782c;
  font-size: 13px;
}

/* BADGE */

.about-badge {
  position: absolute;
  right: -5px;
  bottom: 5px;
  background: #30231c;
  color: #fff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.badge-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #b8893c;
  color: #d1a04d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge strong {
  display: block;
  font-size: 14px;
}

.about-badge small {
  display: block;
  color: #c7bfb8;
  margin-top: 4px;
  font-size: 11px;
}

/* ================= TABLET ================= */

@media (max-width: 900px) {

  .about-section {
    padding: 80px 6%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-content {
    text-align: left;
  }

  .about-content p {
    max-width: 100%;
  }

  .about-visual {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

  .about-section {
    padding: 65px 20px;
  }

  .about-content h2 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .about-content .about-intro {
    font-size: 16px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 28px 0;
  }

  .about-visual {
    padding: 8px 8px 55px 8px;
  }

  .about-image-wrapper img {
    height: 470px;
  }

  .experience-card {
    left: -5px;
    bottom: 35px;
    padding: 14px 18px;
  }

  .about-badge {
    right: -5px;
    bottom: 0;
    padding: 14px 16px;
  }

  .about-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* ================= SERVICES ================= */

.services-section {
  background: #211914;
  padding: 110px 7%;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.services-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(190, 145, 69, .15);
  border-radius: 50%;
  top: -300px;
  right: -180px;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(190, 145, 69, .10);
  border-radius: 50%;
  bottom: -200px;
  left: -120px;
}

.services-container {
  max-width: 1250px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* HEADING */

.services-heading {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c79a50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #c79a50;
}

.services-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 22px;
  letter-spacing: -2px;
}

.services-heading h2 span {
  color: #c79a50;
  font-style: italic;
}

.services-heading p {
  color: #bdb3aa;
  font-size: 16px;
  line-height: 1.9;
  max-width: 650px;
}

/* GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */

.service-card {
  min-height: 300px;
  padding: 28px 25px;
  background: #2c221d;
  border: 1px solid rgba(199, 154, 80, .16);
  position: relative;
  transition: .35s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(199, 154, 80, .12);
  border-radius: 50%;
  right: -55px;
  top: -55px;
  transition: .4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 80, .6);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.service-card:hover::before {
  transform: scale(1.5);
}

.service-card.featured {
  background: #c79a50;
  color: #211914;
}

.service-card.featured p {
  color: #3d3025;
}

.service-card.featured a {
  color: #211914;
  border-color: rgba(33,25,20,.35);
}

/* NUMBER */

.service-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #9f8975;
}

.featured .service-number {
  color: #5c4528;
}

/* ICON */

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid #c79a50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c79a50;
  font-size: 22px;
  margin-bottom: 25px;
}

.featured .service-icon {
  border-color: #211914;
  color: #211914;
}

/* TEXT */

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
}

.service-card p {
  color: #aaa098;
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: #d2a85e;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid rgba(210,168,94,.35);
}

.service-card a span {
  transition: .3s ease;
}

.service-card a:hover span {
  transform: translateX(5px);
}

/* BOTTOM CTA */

.services-bottom {
  margin-top: 55px;
  padding: 25px 30px;
  border-top: 1px solid rgba(199,154,80,.25);
  border-bottom: 1px solid rgba(199,154,80,.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.services-bottom small {
  color: #c79a50;
  letter-spacing: 2px;
  font-size: 10px;
}

.services-bottom h3 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.services-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #211914;
  background: #c79a50;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.services-bottom > a span {
  font-size: 18px;
}

/* ================= TABLET ================= */

@media (max-width: 1050px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

  .services-section {
    padding: 75px 20px;
  }

  .services-heading {
    margin-bottom: 40px;
  }

  .services-heading h2 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .services-heading p {
    font-size: 14px;
    line-height: 1.75;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: auto;
    padding: 25px 22px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .services-bottom {
    margin-top: 40px;
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .services-bottom h3 {
    font-size: 21px;
  }

  .services-bottom > a {
    width: 100%;
    justify-content: space-between;
  }

}

/* =====================================================
   HF SOFA REPAIR - GALLERY
===================================================== */

.hf-gallery-section {
  background: #f8f5ef;
  padding: 100px 6%;
  overflow: hidden;
}

.hf-gallery-container {
  max-width: 1250px;
  margin: auto;
}


/* ================= HEADING ================= */

.hf-gallery-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.hf-gallery-heading > span {
  display: inline-block;

  color: #a8782c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;

  margin-bottom: 16px;
}

.hf-gallery-heading h2 {
  margin: 0;

  color: #30231c;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 600;

  line-height: 1.08;
  letter-spacing: -2px;
}

.hf-gallery-heading h2 em {
  display: block;

  color: #a8782c;
  font-style: italic;
}

.hf-gallery-heading p {
  max-width: 600px;

  margin: 20px auto 0;

  color: #6d625b;
  font-size: 16px;
  line-height: 1.8;
}


/* =====================================================
   GALLERY GRID
===================================================== */

.hf-gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}


/* ================= IMAGE CARD ================= */

.hf-gallery-card {
  position: relative;

  width: 100%;
  height: 320px;

  overflow: hidden;

  background: #e8e2da;

  border-radius: 4px;

  cursor: pointer;

  box-shadow:
    0 12px 35px rgba(48, 35, 28, 0.10);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.hf-gallery-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 45px rgba(48, 35, 28, 0.17);
}


.hf-gallery-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform .6s ease;
}

.hf-gallery-card:hover img {
  transform: scale(1.06);
}


/* =====================================================
   LIGHTBOX
===================================================== */

.hf-lightbox {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 50px;

  background: rgba(20, 15, 12, 0.94);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}

.hf-lightbox.active {
  opacity: 1;
  visibility: visible;
}


/* ================= LIGHTBOX IMAGE ================= */

.hf-lightbox-content {
  width: min(1000px, 90vw);
  height: min(700px, 80vh);

  display: flex;
  align-items: center;
  justify-content: center;
}

.hf-lightbox-content img {
  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 3px;

  box-shadow:
    0 25px 70px rgba(0,0,0,.4);
}


/* ================= CLOSE ================= */

.hf-lightbox-close {
  position: absolute;

  top: 22px;
  right: 28px;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255,255,255,.35);

  background: rgba(255,255,255,.08);

  color: #fff;

  border-radius: 50%;

  font-size: 32px;
  line-height: 1;

  cursor: pointer;

  transition: .3s ease;
}

.hf-lightbox-close:hover {
  background: #b8893c;
  border-color: #b8893c;
}


/* ================= PREVIOUS / NEXT ================= */

.hf-lightbox-prev,
.hf-lightbox-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border: 1px solid rgba(255,255,255,.35);

  background: rgba(255,255,255,.08);

  color: #fff;

  border-radius: 50%;

  font-size: 22px;

  cursor: pointer;

  transition: .3s ease;
}

.hf-lightbox-prev {
  left: 30px;
}

.hf-lightbox-next {
  right: 30px;
}

.hf-lightbox-prev:hover,
.hf-lightbox-next:hover {
  background: #b8893c;
  border-color: #b8893c;
}


/* ================= COUNTER ================= */

.hf-gallery-counter {
  position: absolute;

  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  color: #fff;

  font-size: 13px;
  letter-spacing: 2px;

  opacity: .85;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .hf-gallery-section {
    padding: 80px 5%;
  }

  .hf-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hf-gallery-card {
    height: 280px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .hf-gallery-section {
    padding: 65px 18px;
  }

  .hf-gallery-heading {
    margin-bottom: 35px;
  }

  .hf-gallery-heading h2 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hf-gallery-heading p {
    font-size: 14px;
    line-height: 1.7;
  }


  /* 2 IMAGES PER ROW */

  .hf-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hf-gallery-card {
    height: 190px;
    border-radius: 3px;
  }


  /* LIGHTBOX */

  .hf-lightbox {
    padding: 20px;
  }

  .hf-lightbox-content {
    width: 100%;
    height: 70vh;
  }


  .hf-lightbox-close {
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    font-size: 27px;
  }


  .hf-lightbox-prev,
  .hf-lightbox-next {
    width: 42px;
    height: 42px;

    font-size: 17px;
  }

  .hf-lightbox-prev {
    left: 12px;
  }

  .hf-lightbox-next {
    right: 12px;
  }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 380px) {

  .hf-gallery-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hf-gallery-heading h2 {
    font-size: 35px;
  }

  .hf-gallery-card {
    height: 165px;
  }

}

/* =====================================================
   HF SOFA REPAIR - PREMIUM FOOTER
===================================================== */

.hf-footer {
  position: relative;

  background: #2c211b;
  color: #fff;

  overflow: hidden;
}


/* Decorative circle */

.hf-footer::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  border: 1px solid rgba(190, 145, 70, .13);
  border-radius: 50%;

  right: -250px;
  bottom: -300px;

  pointer-events: none;
}

.hf-footer::after {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  border: 1px solid rgba(190, 145, 70, .08);
  border-radius: 50%;

  left: -150px;
  top: 180px;

  pointer-events: none;
}


/* =====================================================
   TOP CTA
===================================================== */

.hf-footer-cta {
  max-width: 1250px;

  margin: auto;

  padding: 70px 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hf-footer-mini-title {
  display: inline-block;

  margin-bottom: 14px;

  color: #c39a54;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2.5px;
}

.hf-footer-cta h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(38px, 4vw, 56px);

  font-weight: 500;

  line-height: 1.1;

  letter-spacing: -1px;
}

.hf-footer-cta h2 em {
  color: #c89a4b;
  font-style: italic;
}


/* CTA BUTTON */

.hf-footer-cta-btn {
  display: inline-flex;
  align-items: center;

  gap: 22px;

  padding: 10px 10px 10px 25px;

  background: #c09243;

  color: #fff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  white-space: nowrap;

  transition: .3s ease;
}

.hf-footer-cta-btn span {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2c211b;

  border-radius: 50%;

  font-size: 18px;

  transition: .3s ease;
}

.hf-footer-cta-btn:hover {
  background: #fff;
  color: #2c211b;
}

.hf-footer-cta-btn:hover span {
  background: #c09243;
  color: #fff;
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.hf-footer-main {
  max-width: 1250px;

  margin: auto;

  padding: 75px 6%;

  display: grid;

  grid-template-columns:
    1.5fr
    .75fr
    .95fr
    1.25fr;

  gap: 55px;
}


/* =====================================================
   BRAND
===================================================== */

.hf-footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  color: #fff;

  text-decoration: none;
}

.hf-logo-mark {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #c09243;

  border-radius: 50%;

  color: #c09243;

  font-family: Georgia, serif;

  font-size: 25px;
  font-weight: 700;
}

.hf-logo-text strong {
  display: block;

  color: #fff;

  font-family: Georgia, serif;

  font-size: 20px;

  letter-spacing: 1px;
}

.hf-logo-text small {
  display: block;

  margin-top: 5px;

  color: #c09243;

  font-size: 8px;

  letter-spacing: 2px;
}


.hf-footer-brand > p {
  max-width: 340px;

  margin: 25px 0 25px;

  color: #bdb1a8;

  font-size: 13px;

  line-height: 1.9;
}


/* =====================================================
   SOCIAL
===================================================== */

.hf-footer-socials {
  display: flex;

  gap: 9px;
}

.hf-footer-socials a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.2);

  border-radius: 50%;

  color: #fff;

  text-decoration: none;

  font-size: 14px;

  transition: .3s ease;
}

.hf-footer-socials a:hover {
  background: #c09243;
  border-color: #c09243;
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.hf-footer-column h3 {
  position: relative;

  margin: 5px 0 25px;

  color: #fff;

  font-family: Georgia, serif;

  font-size: 17px;

  font-weight: 500;
}

.hf-footer-column h3::after {
  content: "";

  display: block;

  width: 28px;
  height: 2px;

  margin-top: 10px;

  background: #c09243;
}


.hf-footer-column ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.hf-footer-column li {
  margin-bottom: 13px;
}

.hf-footer-column li a {
  color: #bdb1a8;

  text-decoration: none;

  font-size: 13px;

  transition: .25s ease;
}

.hf-footer-column li a:hover {
  color: #d0a253;

  padding-left: 5px;
}


/* =====================================================
   CONTACT
===================================================== */

.hf-contact-item {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 21px;
}

.hf-contact-icon {
  width: 32px;
  height: 32px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(192,146,67,.5);

  border-radius: 50%;

  color: #c09243;

  font-size: 12px;
}

.hf-contact-item small {
  display: block;

  margin-bottom: 4px;

  color: #8f837a;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.hf-contact-item p {
  margin: 0;

  color: #c4b9b0;

  font-size: 12px;

  line-height: 1.7;
}

.hf-contact-item a {
  color: #d0a253;

  text-decoration: none;

  font-size: 12px;

  line-height: 1.5;
}

.hf-contact-item a:hover {
  color: #fff;
}


/* =====================================================
   BOTTOM
===================================================== */

.hf-footer-bottom {
  max-width: 1250px;

  margin: auto;

  padding: 22px 6%;

  border-top: 1px solid rgba(255,255,255,.1);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.hf-footer-bottom p {
  margin: 0;

  color: #81766e;

  font-size: 11px;
}

.hf-footer-bottom p strong {
  color: #b89a68;
}

.hf-footer-bottom > div {
  display: flex;

  gap: 22px;
}

.hf-footer-bottom a {
  color: #81766e;

  text-decoration: none;

  font-size: 11px;

  transition: .25s ease;
}

.hf-footer-bottom a:hover {
  color: #d0a253;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

  .hf-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px 35px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .hf-footer-cta {
    padding: 55px 20px;

    display: block;
  }

  .hf-footer-cta h2 {
    font-size: 39px;
  }

  .hf-footer-cta-btn {
    margin-top: 28px;

    width: fit-content;
  }


  .hf-footer-main {
    padding: 55px 20px;

    grid-template-columns: 1fr;

    gap: 42px;
  }


  .hf-footer-brand > p {
    max-width: 100%;
  }


  .hf-footer-bottom {
    padding: 20px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
  }

  .hf-footer-bottom > div {
    flex-wrap: wrap;

    gap: 15px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

  .hf-footer-cta h2 {
    font-size: 34px;
  }

  .hf-logo-mark {
    width: 54px;
    height: 54px;
  }

  .hf-logo-text strong {
    font-size: 17px;
  }

}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.hf-home-extra {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.hf-home-extra *,
.hf-home-extra *::before,
.hf-home-extra *::after {
  box-sizing: border-box;
}


/* =========================================================
   COMMON HEADING
========================================================= */

.hf-section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.hf-section-heading > span,
.hf-faq-left > span {
  display: inline-block;

  color: #a8782c;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 3px;
}

.hf-section-heading h2 {
  margin: 17px 0 20px;

  color: #30231c;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(42px, 5vw, 62px);

  line-height: 1.08;

  font-weight: 600;

  letter-spacing: -2px;
}

.hf-section-heading h2 em {
  display: block;

  color: #a8782c;

  font-style: italic;
}

.hf-section-heading p {
  margin: 0 auto;

  max-width: 620px;

  color: #6d625b;

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   1. WHY CHOOSE
========================================================= */

.hf-why-section {
  padding: 110px 6%;

  background: #f8f5ef;
}


.hf-why-grid {
  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}


.hf-why-card {
  position: relative;

  min-height: 300px;

  padding: 35px 28px;

  background: #fff;

  border: 1px solid #e8e0d5;

  overflow: hidden;

  transition: .35s ease;
}

.hf-why-card:hover {
  transform: translateY(-8px);

  border-color: #c09243;

  box-shadow:
    0 20px 45px rgba(48,35,28,.10);
}


.hf-card-number {
  position: absolute;

  top: 18px;
  right: 20px;

  color: #ddd3c8;

  font-family: Georgia, serif;

  font-size: 28px;
}


.hf-card-icon {
  width: 54px;
  height: 54px;

  margin-bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #30231c;

  color: #c09243;

  font-size: 19px;
}


.hf-why-card h3 {
  margin: 0 0 12px;

  color: #30231c;

  font-family: Georgia, serif;

  font-size: 20px;

  font-weight: 600;
}


.hf-why-card p {
  margin: 0;

  color: #70645b;

  font-size: 13px;

  line-height: 1.8;
}


/* =========================================================
   2. PROBLEMS
========================================================= */

.hf-problems-section {
  padding: 110px 6%;

  background: #30231c;
}


.hf-problems-section .hf-section-heading h2 {
  color: #fff;
}

.hf-problems-section .hf-section-heading p {
  color: #bdb0a6;
}


.hf-problems-grid {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}


.hf-problem-card {
  position: relative;

  min-height: 230px;

  padding: 30px;

  border: 1px solid rgba(255,255,255,.11);

  background: rgba(255,255,255,.035);

  transition: .35s ease;
}


.hf-problem-card:hover {
  background: #3b2c24;

  border-color: rgba(192,146,67,.55);

  transform: translateY(-5px);
}


.hf-problem-card > span {
  position: absolute;

  top: 20px;
  right: 20px;

  color: #76675d;

  font-size: 11px;

  letter-spacing: 1px;
}


.hf-problem-card i {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border: 1px solid #8f6933;

  border-radius: 50%;

  color: #c09243;

  font-size: 18px;
}


.hf-problem-card h3 {
  margin: 0 0 10px;

  color: #fff;

  font-family: Georgia, serif;

  font-size: 19px;
}


.hf-problem-card p {
  margin: 0;

  color: #a99c92;

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   3. PROCESS
========================================================= */

.hf-process-section {
  padding: 110px 6%;

  background: #f8f5ef;
}


.hf-process {
  max-width: 1200px;

  margin: auto;

  position: relative;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;
}


.hf-process-line {
  position: absolute;

  top: 31px;
  left: 10%;

  right: 10%;

  height: 1px;

  background: #d5c4ae;

  z-index: 0;
}


.hf-process-step {
  position: relative;

  text-align: center;

  z-index: 1;
}


.hf-step-circle {
  width: 64px;
  height: 64px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #30231c;

  border: 5px solid #f8f5ef;

  outline: 1px solid #b8893c;

  border-radius: 50%;

  color: #d0a253;

  font-family: Georgia, serif;

  font-size: 14px;
}


.hf-process-step h3 {
  margin: 0 0 10px;

  color: #30231c;

  font-family: Georgia, serif;

  font-size: 18px;
}


.hf-process-step p {
  max-width: 180px;

  margin: auto;

  color: #71665e;

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   4. FAQ
========================================================= */

.hf-faq-section {
  padding: 110px 6%;

  background: #fff;

  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: .75fr 1.25fr;

  gap: 90px;

  align-items: start;
}


.hf-faq-left {
  position: sticky;

  top: 30px;
}


.hf-faq-left h2 {
  margin: 17px 0 20px;

  color: #30231c;

  font-family: Georgia, serif;

  font-size: clamp(40px, 4vw, 55px);

  line-height: 1.08;

  letter-spacing: -1.5px;
}


.hf-faq-left h2 em {
  display: block;

  color: #a8782c;

  font-style: italic;
}


.hf-faq-left > p {
  margin: 0 0 28px;

  color: #6d625b;

  font-size: 14px;

  line-height: 1.8;
}


.hf-faq-button {
  display: inline-flex;

  align-items: center;

  gap: 20px;

  padding: 10px 10px 10px 22px;

  background: #30231c;

  color: #fff;

  text-decoration: none;

  font-size: 13px;

  font-weight: 600;

  transition: .3s ease;
}


.hf-faq-button i {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #b8893c;

  border-radius: 50%;
}


.hf-faq-button:hover {
  background: #b8893c;
}


.hf-faq-button:hover i {
  background: #30231c;
}


/* FAQ ITEMS */

.hf-faq-right {
  border-top: 1px solid #ded6cd;
}


.hf-faq-item {
  border-bottom: 1px solid #ded6cd;
}


.hf-faq-question {
  width: 100%;

  padding: 25px 5px;

  border: 0;

  background: transparent;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  cursor: pointer;

  text-align: left;

  color: #30231c;

  font-family: Georgia, serif;

  font-size: 17px;
}


.hf-faq-question i {
  width: 30px;
  height: 30px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #c9bba9;

  border-radius: 50%;

  color: #a8782c;

  font-size: 11px;

  transition: .3s ease;
}


.hf-faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height .4s ease,
    padding .4s ease;
}


.hf-faq-answer p {
  margin: 0;

  padding: 0 45px 0 5px;

  color: #6d625b;

  font-size: 13px;

  line-height: 1.8;
}


.hf-faq-answer a {
  color: #a8782c;

  font-weight: 600;

  text-decoration: none;
}


/* ACTIVE */

.hf-faq-item.active .hf-faq-question {
  color: #a8782c;
}


.hf-faq-item.active .hf-faq-question i {
  background: #30231c;

  border-color: #30231c;

  color: #d0a253;

  transform: rotate(45deg);
}


.hf-faq-item.active .hf-faq-answer {
  max-height: 200px;

  padding-bottom: 23px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .hf-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hf-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hf-process {
    grid-template-columns: repeat(3, 1fr);

    row-gap: 50px;
  }

  .hf-process-line {
    display: none;
  }

  .hf-faq-section {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hf-faq-left {
    position: static;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .hf-section-heading {
    margin-bottom: 38px;
  }

  .hf-section-heading h2 {
    font-size: 40px;

    letter-spacing: -1px;
  }

  .hf-section-heading p {
    font-size: 13px;
  }


  /* WHY */

  .hf-why-section {
    padding: 70px 18px;
  }

  .hf-why-grid {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .hf-why-card {
    min-height: auto;

    padding: 28px 23px;
  }


  /* PROBLEMS */

  .hf-problems-section {
    padding: 70px 18px;
  }

  .hf-problems-grid {
    grid-template-columns: 1fr 1fr;

    gap: 9px;
  }

  .hf-problem-card {
    min-height: 195px;

    padding: 22px 16px;
  }

  .hf-problem-card i {
    width: 43px;
    height: 43px;

    margin-bottom: 18px;

    font-size: 15px;
  }

  .hf-problem-card h3 {
    font-size: 15px;
  }

  .hf-problem-card p {
    font-size: 10px;
  }


  /* PROCESS */

  .hf-process-section {
    padding: 70px 18px;
  }

  .hf-process {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .hf-process-step {
    text-align: left;

    display: grid;

    grid-template-columns: 60px 1fr;

    column-gap: 18px;

    align-items: center;
  }

  .hf-step-circle {
    width: 58px;
    height: 58px;

    grid-row: span 2;

    margin: 0;
  }

  .hf-process-step h3 {
    margin: 0 0 5px;
  }

  .hf-process-step p {
    max-width: none;

    margin: 0;

    font-size: 11px;
  }


  /* FAQ */

  .hf-faq-section {
    padding: 70px 18px;

    gap: 40px;
  }

  .hf-faq-left h2 {
    font-size: 40px;
  }

  .hf-faq-question {
    padding: 21px 2px;

    font-size: 14px;
  }

  .hf-faq-answer p {
    padding-left: 2px;
    padding-right: 25px;

    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .hf-section-heading h2,
  .hf-faq-left h2 {
    font-size: 35px;
  }

  .hf-problems-grid {
    grid-template-columns: 1fr;
  }

}



/* =====================================================
   CONTACT PAGE
===================================================== */

.hf-contact-page {
  position: relative;

  padding: 110px 6%;

  background: #30231c;

  overflow: hidden;
}


/* Decorative circles */

.hf-contact-page::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -300px;
  top: -300px;

  border: 1px solid rgba(192,146,67,.12);

  border-radius: 50%;

  pointer-events: none;
}

.hf-contact-page::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  left: -220px;
  bottom: -200px;

  border: 1px solid rgba(192,146,67,.08);

  border-radius: 50%;

  pointer-events: none;
}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.hf-contact-wrap {
  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: 90px;

  align-items: center;
}


/* =====================================================
   LEFT
===================================================== */

.hf-contact-intro {
  max-width: 500px;
}

.hf-contact-label {
  display: inline-block;

  color: #c09243;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;
}


.hf-contact-intro h1 {
  margin: 18px 0 22px;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(48px, 5vw, 70px);

  font-weight: 500;

  line-height: 1.02;

  letter-spacing: -2px;
}

.hf-contact-intro h1 em {
  display: block;

  color: #c69a52;

  font-style: italic;
}


.hf-contact-intro > p {
  max-width: 450px;

  margin: 0;

  color: #b9aaa0;

  font-size: 14px;

  line-height: 1.9;
}


.hf-contact-line {
  width: 55px;
  height: 2px;

  margin: 32px 0;

  background: #c09243;
}


/* =====================================================
   MINI BRAND
===================================================== */

.hf-contact-note {
  display: flex;

  align-items: center;

  gap: 14px;
}


.hf-contact-note > span {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #a8782c;

  border-radius: 50%;

  color: #c09243;

  font-family: Georgia, serif;

  font-size: 18px;

  font-weight: 700;
}


.hf-contact-note strong {
  display: block;

  color: #eee7e1;

  font-family: Georgia, serif;

  font-size: 15px;

  font-weight: 500;
}


.hf-contact-note small {
  display: block;

  margin-top: 5px;

  color: #8f8178;

  font-size: 9px;

  letter-spacing: 2px;
}


/* =====================================================
   CONTACT CARDS
===================================================== */

.hf-contact-cards {
  display: flex;

  flex-direction: column;

  gap: 13px;
}


.hf-contact-card {
  position: relative;

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 24px;

  background: rgba(255,255,255,.045);

  border: 1px solid rgba(255,255,255,.12);

  color: #fff;

  text-decoration: none;

  transition: all .35s ease;
}


.hf-contact-card:hover {
  background: rgba(192,146,67,.10);

  border-color: rgba(192,146,67,.65);

  transform: translateX(7px);
}


/* ICON */

.hf-contact-card-icon {
  width: 58px;
  height: 58px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(192,146,67,.6);

  border-radius: 50%;

  color: #c69a52;

  font-size: 20px;
}


/* CONTENT */

.hf-contact-card-content {
  flex: 1;
}


.hf-contact-card-content > span {
  display: block;

  margin-bottom: 6px;

  color: #9c8d83;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}


.hf-contact-card-content h3 {
  margin: 0 0 5px;

  color: #fff;

  font-family: Georgia, serif;

  font-size: 19px;

  font-weight: 500;
}


.hf-contact-card-content p {
  margin: 0;

  color: #a99b92;

  font-size: 11px;

  line-height: 1.7;
}


/* ARROW */

.hf-contact-arrow {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.15);

  border-radius: 50%;

  color: #c09243;

  font-size: 11px;

  transition: .3s ease;
}


.hf-contact-card:hover .hf-contact-arrow {
  background: #c09243;

  border-color: #c09243;

  color: #30231c;

  transform: translateX(3px);
}


/* ADDRESS */

.hf-address-card {
  cursor: default;
}


.hf-address-card:hover {
  transform: translateX(7px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .hf-contact-wrap {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hf-contact-intro {
    max-width: 700px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .hf-contact-page {
    padding: 75px 18px;
  }


  .hf-contact-wrap {
    gap: 42px;
  }


  .hf-contact-intro h1 {
    font-size: 47px;

    letter-spacing: -1px;
  }


  .hf-contact-intro > p {
    font-size: 13px;
  }


  .hf-contact-card {
    padding: 18px;

    gap: 14px;
  }


  .hf-contact-card-icon {
    width: 48px;
    height: 48px;

    font-size: 17px;
  }


  .hf-contact-card-content h3 {
    font-size: 16px;
  }


  .hf-contact-card-content p {
    font-size: 10px;
  }


  .hf-contact-arrow {
    width: 30px;
    height: 30px;

    font-size: 9px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

  .hf-contact-page {
    padding: 60px 14px;
  }

  .hf-contact-intro h1 {
    font-size: 40px;
  }

  .hf-contact-card {
    padding: 15px;
  }

  .hf-contact-card-icon {
    width: 43px;
    height: 43px;
  }

  .hf-contact-card-content h3 {
    font-size: 14px;
  }

}

/* =====================================================
   SERVICE AREA SECTION
===================================================== */

.hf-service-area {
  position: relative;

  padding: 105px 6%;

  background: #f8f5ef;

  overflow: hidden;
}

.hf-service-area::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -260px;
  top: -250px;

  border: 1px solid rgba(168,120,44,.12);

  border-radius: 50%;

  pointer-events: none;
}

.hf-service-area::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  left: -170px;
  bottom: -170px;

  border: 1px solid rgba(168,120,44,.08);

  border-radius: 50%;

  pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.hf-area-container {
  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: auto;
}


/* =====================================================
   HEADING
===================================================== */

.hf-area-heading {
  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}

.hf-area-heading > span {
  display: inline-block;

  color: #a8782c;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;
}

.hf-area-heading h2 {
  margin: 17px 0 19px;

  color: #30231c;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(42px, 5vw, 61px);

  font-weight: 600;

  line-height: 1.08;

  letter-spacing: -2px;
}

.hf-area-heading h2 em {
  display: block;

  color: #a8782c;

  font-style: italic;
}

.hf-area-heading p {
  max-width: 620px;

  margin: auto;

  color: #6d625b;

  font-size: 14px;

  line-height: 1.85;
}


/* =====================================================
   AREA GRID
===================================================== */

.hf-area-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;
}


/* =====================================================
   AREA CARD
===================================================== */

.hf-area-card {
  position: relative;

  min-height: 310px;

  padding: 28px 25px;

  background: #fff;

  border: 1px solid #e5ddd2;

  transition: all .35s ease;
}

.hf-area-card:hover {
  transform: translateY(-8px);

  border-color: #b8893c;

  box-shadow:
    0 20px 45px rgba(48,35,28,.10);
}


/* TOP */

.hf-area-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 28px;
}


.hf-area-icon {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #30231c;

  color: #c09243;

  font-size: 17px;
}


.hf-area-top > span {
  color: #d7cec4;

  font-family: Georgia, serif;

  font-size: 25px;
}


/* CONTENT */

.hf-area-card h3 {
  margin: 0 0 12px;

  color: #30231c;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 23px;

  font-weight: 600;
}


.hf-area-card p {
  margin: 0;

  color: #70645c;

  font-size: 12px;

  line-height: 1.8;
}


/* LINK */

.hf-area-card a {
  position: absolute;

  left: 25px;
  bottom: 25px;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #a8782c;

  text-decoration: none;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .5px;

  transition: .3s ease;
}

.hf-area-card a i {
  transition: .3s ease;
}

.hf-area-card a:hover i {
  transform: translateX(5px);
}


/* SPECIAL CARD */

.hf-area-card-special {
  background: #30231c;

  border-color: #30231c;
}

.hf-area-card-special h3 {
  color: #fff;
}

.hf-area-card-special p {
  color: #b7aaa0;
}

.hf-area-card-special .hf-area-top > span {
  color: #6f625a;
}

.hf-area-card-special a {
  color: #d0a253;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.hf-area-bottom {
  margin-top: 18px;

  padding: 27px 30px;

  background: #30231c;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}


.hf-area-bottom span {
  display: block;

  margin-bottom: 7px;

  color: #a88f73;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}


.hf-area-bottom h3 {
  margin: 0;

  color: #fff;

  font-family: Georgia, serif;

  font-size: 20px;

  font-weight: 500;
}


.hf-area-bottom > a {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  padding: 12px 18px;

  background: #c09243;

  color: #fff;

  text-decoration: none;

  font-size: 11px;

  font-weight: 700;

  white-space: nowrap;

  transition: .3s ease;
}

.hf-area-bottom > a:hover {
  background: #fff;

  color: #30231c;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .hf-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .hf-service-area {
    padding: 70px 18px;
  }

  .hf-area-heading {
    margin-bottom: 38px;
  }

  .hf-area-heading h2 {
    font-size: 40px;

    letter-spacing: -1px;
  }

  .hf-area-heading p {
    font-size: 13px;
  }


  .hf-area-grid {
    grid-template-columns: 1fr 1fr;

    gap: 10px;
  }


  .hf-area-card {
    min-height: 275px;

    padding: 22px 17px;
  }


  .hf-area-top {
    margin-bottom: 22px;
  }


  .hf-area-icon {
    width: 45px;
    height: 45px;

    font-size: 15px;
  }


  .hf-area-top > span {
    font-size: 19px;
  }


  .hf-area-card h3 {
    font-size: 18px;
  }


  .hf-area-card p {
    font-size: 10px;

    line-height: 1.7;
  }


  .hf-area-card a {
    left: 17px;
    bottom: 19px;

    font-size: 10px;
  }


  .hf-area-bottom {
    padding: 23px 18px;

    display: block;
  }


  .hf-area-bottom > a {
    margin-top: 18px;

    width: fit-content;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

  .hf-service-area {
    padding-left: 13px;
    padding-right: 13px;
  }

  .hf-area-heading h2 {
    font-size: 35px;
  }

  .hf-area-grid {
    grid-template-columns: 1fr;
  }

  .hf-area-card {
    min-height: 250px;
  }

}