*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", sans-serif;
  color: #4A4A4A;
  background: #FFFFFF;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1f1e1e;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #1f1e1e;
}

.about-values .section-eyebrow,
.page-hero .section-eyebrow {
  color: #FFFFFF;
}
.about-values .section-eyebrow::before,
.page-hero .section-eyebrow::before {
  background: #FFFFFF;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1f1e1e;
}
.section-title--white {
  color: #FFFFFF;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  color: #6C757D;
}
.section-lead--white {
  color: rgba(255, 255, 255, 0.75);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal=left] {
  transform: translateX(-28px);
}
[data-reveal=left].revealed {
  transform: translateX(0);
}

[data-reveal=right] {
  transform: translateX(28px);
}
[data-reveal=right].revealed {
  transform: translateX(0);
}

@keyframes header-drop-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes hamburger-punch {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: header-drop-in 0.6s ease-out;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.12);
}
.site-header.scrolled .header-topbar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.site-header.scrolled .header-main__inner {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.header-topbar {
  background: #A9885C;
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
@media (max-width: 768px) {
  .header-topbar {
    display: none;
  }
}

.header-topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.5rem 2rem;
}

.header-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #141414;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header-topbar__item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.header-topbar__item:is(a):hover {
  color: #FFFFFF;
}

.header-main {
  background: #141414;
}

.header-main__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1rem 2rem;
  transition: padding 0.3s ease;
}
@media (max-width: 768px) {
  .header-main__inner {
    padding: 0.85rem 1.25rem;
    gap: 1rem;
  }
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo__mark {
  height: 52px;
  width: auto;
  transition: height 0.3s ease;
}
@media (max-width: 576px) {
  .logo__mark {
    height: 40px;
  }
}

.header-search {
  flex: 1;
  display: flex;
  align-items: stretch;
  max-width: 620px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 999px;
  overflow: hidden;
  height: 46px;
}
@media (max-width: 768px) {
  .header-search {
    display: none;
  }
}

.header-search__select {
  border: none;
  border-right: 1px solid #E9ECEF;
  background: #F8F9FA;
  padding: 0 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1C1C1C;
  max-width: 150px;
}

.header-search__input {
  flex: 1;
  border: none;
  padding: 0 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #1C1C1C;
  min-width: 0;
}
.header-search__input::-moz-placeholder {
  color: #ADB5BD;
}
.header-search__input::placeholder {
  color: #ADB5BD;
}
.header-search__input:focus {
  outline: none;
}

.header-search__btn {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A9885C;
  color: #141414;
  transition: all 0.3s ease;
}
.header-search__btn svg {
  width: 18px;
  height: 18px;
}
.header-search__btn:hover {
  background: #C7AD84;
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .header-actions {
    gap: 1rem;
  }
}

.header-actions__quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  background: #A9885C;
  color: #141414;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.header-actions__quote-btn:hover {
  background: #C7AD84;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.12);
}
@media (max-width: 576px) {
  .header-actions__quote-btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.78rem;
  }
}

.nav-panel {
  background: #1f1e1e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) {
  .nav-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    position: fixed;
    inset: 0;
    left: auto;
    width: 84%;
    max-width: 360px;
    height: 100vh;
    padding: 6rem 2.25rem 3rem;
    overflow-y: auto;
    background: rgba(20, 20, 20, 0.94);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: none;
    z-index: 999;
    visibility: hidden;
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.6s;
    pointer-events: none;
  }
  .nav-panel.open {
    visibility: visible;
    clip-path: circle(150% at 100% 0%);
    pointer-events: auto;
  }
}

.header-categories {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.35rem 1.5rem;
}
@media (max-width: 1024px) {
  .header-categories {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    gap: 1.1rem;
  }
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
@media (max-width: 1024px) {
  .nav__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.nav__link {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.65rem 0.75rem;
  transition: all 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  color: #C7AD84;
}
@media (max-width: 1024px) {
  .nav__link {
    font-size: 1.05rem;
    font-family: "Oswald", sans-serif;
    color: #FFFFFF;
    padding: 0.4rem 0;
    opacity: 0;
    transform: scale(0.6) rotate(-8deg) translateY(10px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav__link:hover, .nav__link.active {
    color: #FFFFFF;
  }
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-left: -0.4rem;
  color: rgba(255, 255, 255, 0.6);
}
.nav__dropdown-toggle svg {
  width: 11px;
  height: 11px;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .nav__dropdown-toggle {
    color: #FFFFFF;
    position: absolute;
    top: -2px;
    right: 0;
    padding: 8px;
  }
  .nav__dropdown-toggle svg {
    width: 16px;
    height: 16px;
  }
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(6px);
  min-width: 220px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(26, 46, 74, 0.18);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.nav__dropdown-link {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: #1C1C1C;
  transition: all 0.3s ease;
}
.nav__dropdown-link:hover, .nav__dropdown-link.active {
  background: #F8F9FA;
  color: #1f1e1e;
}

.nav__item--dropdown:hover .nav__dropdown, .nav__item--dropdown:focus-within .nav__dropdown, .nav__item--dropdown.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item--dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    background: transparent;
    box-shadow: none;
    width: 100%;
    min-width: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav__item--dropdown.open .nav__dropdown {
    max-height: 320px;
    padding: 0.6rem 0 0.25rem 0.25rem;
  }
  .nav__dropdown-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
  .nav__dropdown-link:hover {
    background: transparent;
    color: #FFFFFF;
  }
}
@media (max-width: 1024px) {
  .nav-panel.open .nav__link {
    opacity: 1;
    transform: scale(1) rotate(0) translateY(0);
  }
}
@media (max-width: 1024px) {
  .nav-panel.open .nav__item:nth-child(1) .nav__link {
    transition-delay: 0.06s;
  }
  .nav-panel.open .nav__item:nth-child(2) .nav__link {
    transition-delay: 0.1s;
  }
  .nav-panel.open .nav__item:nth-child(3) .nav__link {
    transition-delay: 0.14s;
  }
  .nav-panel.open .nav__item:nth-child(4) .nav__link {
    transition-delay: 0.18s;
  }
  .nav-panel.open .nav__item:nth-child(5) .nav__link {
    transition-delay: 0.22s;
  }
  .nav-panel.open .nav__item:nth-child(6) .nav__link {
    transition-delay: 0.26s;
  }
}

.nav-backdrop {
  display: none;
}
@media (max-width: 1024px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(20, 20, 20, 0.65);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s, backdrop-filter 0.45s ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}
.hamburger.active {
  animation: hamburger-punch 0.4s ease;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.2s ease, background 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height, 172px);
  padding-bottom: 4rem;
  overflow: hidden;
  background: #141414;
}
@media (max-width: 1024px) {
  .hero {
    min-height: 560px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.72) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.hero__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  background: #A9885C;
  color: #141414;
  font-weight: 700;
  border-radius: 999px;
  padding: 1rem 2.75rem;
}
.hero__cta:hover {
  background: #C7AD84;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.12);
}

.about-story {
  background: #F5F5F4;
  padding: 6rem 0 7rem;
}
.about-story__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .about-story__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-story__lead {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.5;
  color: #1f1e1e;
  margin: 1rem 0 1.75rem;
}
.about-story__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4A4A4A;
  max-width: 640px;
}
.about-story__text p {
  margin-bottom: 1.25rem;
}
.about-story__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-story__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  background: #1f1e1e;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.about-story__btn-primary:hover {
  background: #141414;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.12);
}
.about-story__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  color: #1f1e1e;
  border: 2px solid #1f1e1e;
}
.about-story__btn-outline:hover {
  background: #1f1e1e;
  color: #FFFFFF;
}
.about-story__founder {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 46, 74, 0.18);
  position: sticky;
  top: 140px;
}
@media (max-width: 1024px) {
  .about-story__founder {
    position: static;
  }
}
.about-story__founder-image {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-story__founder-body {
  padding: 1.5rem;
}
.about-story__founder-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f1e1e;
}
.about-story__founder-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6C757D;
  margin-bottom: 0.85rem;
}
.about-story__founder-quote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4A4A4A;
  font-style: italic;
  border-left: 3px solid #1f1e1e;
  padding-left: 0.85rem;
}

.about-timeline {
  background: #FFFFFF;
  padding: 6rem 0 7rem;
}
.about-timeline__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.about-timeline__line {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.about-timeline__line::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 20px;
  width: 2px;
  background: #E9ECEF;
}
@media (max-width: 768px) {
  .about-timeline__line::before {
    left: 14px;
  }
}
.about-timeline__item {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 3rem;
}
.about-timeline__item:last-child {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .about-timeline__item {
    padding-left: 3rem;
  }
}
.about-timeline__dot {
  position: absolute;
  left: 12px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1f1e1e;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 2px #1f1e1e;
}
@media (max-width: 768px) {
  .about-timeline__dot {
    left: 6px;
  }
}
.about-timeline__tag {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f1e1e;
  margin-bottom: 0.5rem;
}
.about-timeline__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f1e1e;
  margin-bottom: 0.6rem;
}
.about-timeline__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4A4A4A;
  max-width: 560px;
}

.about-values {
  background: #141414;
  padding: 6rem 0 7rem;
}
.about-values__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.about-values__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.about-values__row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-values__num {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  width: 70px;
}
.about-values__row-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  flex: 0 0 230px;
}
@media (max-width: 768px) {
  .about-values__row-title {
    flex: 1 1 100%;
  }
}
.about-values__row-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
  min-width: 240px;
}

.features {
  padding: 6rem 0 6.5rem;
  background: #FFFFFF;
}

.features__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.features__header .section-eyebrow {
  justify-content: center;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.features__card {
  text-align: center;
  padding: 0 0.5rem;
}

.features__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F5F5F4;
  color: #141414;
  transition: all 0.3s ease;
}
.features__icon svg {
  width: 34px;
  height: 34px;
}

.features__card:hover .features__icon {
  background: #A9885C;
  color: #FFFFFF;
  transform: translateY(-4px);
}

.features__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1C1C1C;
  margin-bottom: 0.6rem;
}

.features__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #6C757D;
}

.category-section {
  padding: 6rem 0;
  background: #FFFFFF;
  scroll-margin-top: 190px;
}
.category-section--tint {
  background: #F5F5F4;
}

.category-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.category-section__header .section-eyebrow {
  justify-content: center;
}

.category-section__lead {
  max-width: 560px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.category-section--tint .category-card {
  background: #FFFFFF;
}
.category-card:hover {
  border-color: #141414;
  background: #141414;
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.12);
}
.category-card:hover .category-card__icon {
  border-color: #C7AD84;
}
.category-card:hover .category-card__label {
  color: #FFFFFF;
}

.category-card__icon {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E9ECEF;
  transition: all 0.3s ease;
}
.category-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1C1C1C;
  transition: all 0.3s ease;
  padding-bottom: 20px;
}

.contact {
  padding: 7rem 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
.contact__info .section-lead {
  margin-bottom: 2.5rem;
}
.contact__lead {
  margin-top: 1rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: #ECECEB;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f1e1e;
  flex-shrink: 0;
}
.contact__detail-icon svg {
  width: 20px;
  height: 20px;
}
.contact__detail-content label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ADB5BD;
  margin-bottom: 0.2rem;
}
.contact__detail-content a, .contact__detail-content p {
  font-size: 0.95rem;
  color: #1C1C1C;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact__detail-content a:hover {
  color: #1f1e1e;
}
.contact__service-area {
  background: #ECECEB;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.contact__service-area svg {
  width: 22px;
  height: 22px;
  color: #1f1e1e;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__service-area p {
  font-size: 0.9rem;
  color: #4A4A4A;
  line-height: 1.6;
}
.contact__service-area p strong {
  display: block;
  color: #1f1e1e;
  margin-bottom: 0.25rem;
}
.contact__form-wrap {
  background: #F8F9FA;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(26, 46, 74, 0.08);
}
@media (max-width: 576px) {
  .contact__form-wrap {
    padding: 1.5rem;
  }
}
.contact__form-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f1e1e;
  margin-bottom: 0.5rem;
}
.contact__form-sub {
  font-size: 0.88rem;
  color: #6C757D;
  margin-bottom: 1.75rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 576px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact__field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #343A40;
}
.contact__field input, .contact__field select, .contact__field textarea {
  padding: 0.85rem 1rem;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #1C1C1C;
  transition: all 0.3s ease;
  width: 100%;
}
.contact__field input:focus, .contact__field select:focus, .contact__field textarea:focus {
  outline: none;
  border-color: #1f1e1e;
  box-shadow: 0 0 0 3px rgba(31, 30, 30, 0.1);
}
.contact__field input::-moz-placeholder, .contact__field select::-moz-placeholder, .contact__field textarea::-moz-placeholder {
  color: #ADB5BD;
}
.contact__field input::placeholder, .contact__field select::placeholder, .contact__field textarea::placeholder {
  color: #ADB5BD;
}
.contact__field textarea {
  resize: vertical;
  min-height: 100px;
}
.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  background: #1f1e1e;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.contact__submit:hover {
  background: #141414;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.12);
}
.contact__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.92rem;
}
.contact__quote-link {
  text-align: center;
  font-size: 0.85rem;
  color: #6C757D;
  margin-top: 1.25rem;
}
.contact__quote-link a {
  color: #1f1e1e;
  font-weight: 600;
  margin-left: 0.3rem;
}
.contact__quote-link a:hover {
  color: #1f1e1e;
}

.site-footer {
  background: #1f1e1e;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.site-footer__grid > * {
  min-width: 0;
}
@media (max-width: 576px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
}

.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.site-footer__logo {
  width: 190px;
  height: auto;
}

.site-footer__heading {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C7AD84;
  margin-bottom: 1.1rem;
}

.site-footer__blurb {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}
@media (max-width: 576px) {
  .site-footer__blurb {
    margin-left: auto;
    margin-right: auto;
  }
}

.site-footer__newsletter {
  display: flex;
  margin-top: 1.25rem;
  max-width: 320px;
}
@media (max-width: 576px) {
  .site-footer__newsletter {
    margin-left: auto;
    margin-right: auto;
  }
}

.site-footer__newsletter-input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
}
.site-footer__newsletter-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.site-footer__newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  background: #A9885C;
  color: #141414;
  font-weight: 700;
  border-radius: 0 4px 4px 0;
  padding: 0.75rem 1.4rem;
}
.site-footer__newsletter-btn:hover {
  background: #C7AD84;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .site-footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

.site-footer__region {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
}
.site-footer__region option {
  color: #141414;
}

.site-footer__bottom-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.75rem;
}

.site-footer__follow {
  display: flex;
  align-items: center;
}

.site-footer__follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  background: #A9885C;
  color: #141414;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
}
.site-footer__follow-btn svg {
  width: 14px;
  height: 14px;
}
.site-footer__follow-btn:hover {
  background: #C7AD84;
}

.site-footer__accept {
  display: flex;
  align-items: center;
}

.site-footer__accept-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-footer__accept-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__accept-icon svg {
  width: 15px;
  height: 15px;
}

.site-footer__legal {
  padding: 1.25rem 0 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.call-us {
  background: linear-gradient(135deg, #1f1e1e 0%, #141414 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.call-us::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}
.call-us::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.call-us__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.call-us__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.call-us__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.call-us__title span {
  color: #FFFFFF;
}
.call-us__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.call-us__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.call-us__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  background: #FFFFFF;
  color: #1f1e1e;
  border: 2px solid #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
}
.call-us__btn-primary:hover {
  background: #E9ECEF;
  border-color: #E9ECEF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.call-us__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.call-us__btn-secondary:hover {
  background: #FFFFFF;
  color: #1f1e1e;
  border-color: #FFFFFF;
}
.call-us__abn {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.call-us__inner p:first-of-type {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.call-us__inner h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.call-us__inner h2 span {
  color: #FFFFFF;
}
.call-us__inner p:last-of-type {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.breadcrumbs {
  background: #F8F9FA;
  border-bottom: 1px solid #E9ECEF;
  margin-top: var(--header-height, 172px);
}
.breadcrumbs__inner {
  padding: 0.9rem 2rem;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #ADB5BD;
}
.breadcrumbs li[aria-current=page] {
  font-weight: 600;
  color: #1f1e1e;
}
.breadcrumbs a {
  font-weight: 500;
  color: #6C757D;
  transition: all 0.3s ease;
}
.breadcrumbs a:hover {
  color: #1f1e1e;
}

.shop {
  padding: 3rem 0 5rem;
  background: #FFFFFF;
}

.shop__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .shop__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.shop__filters-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  background: #F8F9FA;
  border-radius: 4px;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1C1C1C;
}
.shop__filters-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.shop__filters-toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .shop__filters-toggle {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .shop__filters {
    display: none;
  }
  .shop__filters.open {
    display: block;
  }
}

.shop__filters > h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 1.25rem;
}

.shop__filter-group {
  border-bottom: 1px solid #E9ECEF;
}

.shop__filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1C1C1C;
  text-align: left;
}
.shop__filter-toggle svg {
  width: 14px;
  height: 14px;
  color: #6C757D;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.shop__filter-toggle:hover {
  color: #1f1e1e;
}

.shop__filter-group.open .shop__filter-toggle svg {
  transform: rotate(180deg);
}

.shop__filter-panel {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  padding-bottom: 1.1rem;
}

.shop__filter-group.open .shop__filter-panel {
  display: flex;
}

.shop__filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6C757D;
  cursor: pointer;
}
.shop__filter-checkbox input[type=checkbox] {
  width: 15px;
  height: 15px;
  accent-color: #1f1e1e;
  flex-shrink: 0;
}
.shop__filter-checkbox span:last-child {
  margin-left: auto;
  color: #ADB5BD;
  font-size: 0.78rem;
}
.shop__filter-checkbox:hover {
  color: #1C1C1C;
}

.shop__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 1.5rem;
}

.shop__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #E9ECEF;
}

.shop__count {
  font-size: 0.85rem;
  color: #6C757D;
}

.shop__toolbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.shop__sort {
  font-size: 0.85rem;
  color: #6C757D;
}
.shop__sort strong {
  color: #1C1C1C;
}

.shop__view-toggle {
  display: flex;
  gap: 0.4rem;
}

.shop__view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  color: #ADB5BD;
}
.shop__view-btn svg {
  width: 16px;
  height: 16px;
}
.shop__view-btn.active, .shop__view-btn:hover {
  background: #F8F9FA;
  color: #141414;
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}
@media (max-width: 1024px) {
  .shop__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }
}

.shop__group {
  margin-bottom: 3rem;
}
.shop__group:last-child {
  margin-bottom: 0;
}

.shop__group > h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid #E9ECEF;
}

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card[hidden] {
  display: none;
}

.card-image {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F9FA;
  border-radius: 8px;
  margin-bottom: 1rem;
  color: #141414;
  transition: all 0.3s ease;
  overflow: hidden;
}
.card-image svg {
  width: 40%;
  height: 40%;
}
.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card:hover .card-image {
  background: #F5F5F4;
  color: #A9885C;
}

.product-card h4 {
  margin: 0 0 0.25rem;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ADB5BD;
}

.product-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1C1C1C;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.product-card__quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  align-self: flex-start;
  background: #A9885C;
  color: #141414;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
}
.product-card__quote-btn:hover {
  background: #C7AD84;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.12);
}

.page-hero {
  background: #1f1e1e;
  padding: calc(var(--header-height, 172px) + 2rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .page-hero {
    padding-bottom: 3rem;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #141414 0%, #1f1e1e 100%);
}
.page-hero--cream::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 60px;
  background: #F5F5F4;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translateZ(0);
}
.page-hero--white::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 60px;
  background: #FFFFFF;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translateZ(0);
}
.page-hero__container {
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  justify-content: flex-start;
}
.page-hero__title {
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
}

.icon-md {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.section-eyebrow--center {
  justify-content: center;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1100;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #1f1e1e, #1f1e1e);
}