/** Shopify CDN: Minification failed

Line 28:0 All "@import" rules must come first

**/
:root {
  --woodera-cream: #F0E9DC;
  --woodera-orange: #DF6022;
  --woodera-charcoal: #2C292C;
  --woodera-white: #FFFFFF;

  --color-background: var(--woodera-white);
  --color-surface: var(--woodera-cream);
  --color-accent: var(--woodera-orange);
  --color-text: var(--woodera-charcoal);

  --container-width: 1380px;
  --radius: 10px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;

  --section-gap-desktop: 88px;
  --section-gap-mobile: 56px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');


* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 64px);
}


/* =========================================
   UTILITY SPACING
========================================= */

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.row {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}


/* =========================================
   PRODUCT DETAIL GALLERY
========================================= */

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-gallery__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  aspect-ratio: 4 / 3;

  max-height: 650px;

  overflow: hidden;

  background: #F5F3EF;

  border-radius: 10px;
}

.product-gallery__main img,
.product-gallery__fallback-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;

  gap: 12px;

  overflow-x: auto;

  padding-bottom: 4px;

  -webkit-overflow-scrolling: touch;
}

.product-gallery__thumbnail {
  flex: 0 0 100px;

  width: 100px;
  height: 100px;

  padding: 0;

  overflow: hidden;

  border: 1px solid rgba(44, 41, 44, 0.15);
  border-radius: 6px;

  background: transparent;

  cursor: pointer;
}

.product-gallery__thumbnail img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.product-gallery__thumbnail:hover {
  border-color: rgba(44, 41, 44, 0.35);
}

.product-gallery__thumbnail.is-active {
  border: 2px solid var(--woodera-orange);
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border: 1px solid rgba(44, 41, 44, 0.12);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.9);

  color: var(--woodera-charcoal);

  font-size: 18px;
  line-height: 1;

  cursor: pointer;

  transform: translateY(-50%);
}

.product-gallery__arrow:hover {
  color: var(--woodera-orange);
}

.product-gallery__arrow--prev {
  left: 14px;
}

.product-gallery__arrow--next {
  right: 14px;
}

@media (max-width: 768px) {
  .product-gallery__main {
    max-height: 500px;
  }

  .product-gallery__thumbnail {
    flex-basis: 80px;

    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .product-gallery__main {
    max-height: 400px;
  }

  .product-gallery__thumbnail {
    flex-basis: 70px;

    width: 70px;
    height: 70px;
  }
}

.product-detail__price-notice {
  margin: 0;

  padding: 13px 15px;

  background: #F5F0E7;

  border: 1px solid rgba(44, 41, 44, 0.1);
  border-radius: 6px;

  color: rgba(44, 41, 44, 0.76);

  font-size: 12px;
  line-height: 1.55;
}

.product-detail__price-notice strong {
  color: var(--woodera-charcoal);
  font-weight: 700;
}


/* =========================================
   CART
========================================= */

.cart-page {
  padding: 64px 0 88px;
}

.cart-page__title {
  margin: 0 0 36px;

  color: var(--woodera-charcoal);

  font-size: 42px;
  line-height: 1.15;
}

.cart-page__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(320px, 0.65fr);

  gap: 48px;

  align-items: start;
}

.cart-page__items-heading {
  display: flex;

  justify-content: space-between;
  align-items: baseline;

  margin-bottom: 16px;

  color: var(--woodera-charcoal);

  font-size: 20px;
  font-weight: 700;
}

.cart-page__items-heading span {
  color: rgba(44, 41, 44, 0.55);

  font-size: 12px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.04em;
}

.cart-page__item-list {
  border-top: 1px solid rgba(44, 41, 44, 0.12);
}

.cart-item {
  display: grid;

  grid-template-columns: 180px minmax(0, 1fr);

  gap: 24px;

  padding: 20px 0;

  border-bottom: 1px solid rgba(44, 41, 44, 0.12);
}

.cart-item__media {
  display: block;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  border-radius: 8px;

  background: #F5F3EF;
}

.cart-item__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.cart-item__content {
  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  gap: 16px;
}

.cart-item__topline {
  display: flex;

  justify-content: space-between;

  gap: 16px;
}

.cart-item__title {
  margin: 0;

  color: var(--woodera-charcoal);

  font-size: 20px;
  line-height: 1.25;
}

.cart-item__title a {
  text-decoration: none;
}

.cart-item__title a:hover {
  color: var(--woodera-orange);
}

.cart-item__variant {
  margin: 6px 0 0;

  color: rgba(44, 41, 44, 0.62);

  font-size: 12px;
}

.cart-item__price {
  flex-shrink: 0;

  color: var(--woodera-charcoal);

  font-size: 16px;
  font-weight: 700;

  text-align: right;
}

.cart-item__details {
  display: flex;

  flex-wrap: wrap;

  gap: 8px 20px;

  color: rgba(44, 41, 44, 0.7);

  font-size: 12px;
  line-height: 1.5;
}

.cart-item__details strong {
  color: var(--woodera-charcoal);

  font-weight: 600;
}

.cart-item__controls {
  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 16px;
}

.cart-item__quantity {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.cart-item__quantity label {
  color: rgba(44, 41, 44, 0.65);

  font-size: 11px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.04em;
}

.cart-item__quantity-control {
  display: flex;

  align-items: center;

  width: max-content;

  border: 1px solid rgba(44, 41, 44, 0.18);

  border-radius: 6px;

  overflow: hidden;
}

.cart-item__quantity-button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border: 0;

  background: #FFFFFF;

  color: var(--woodera-charcoal);

  font-size: 18px;

  cursor: pointer;
}

.cart-item__quantity-button:hover {
  background: #F5F3EF;

  color: var(--woodera-orange);
}

.cart-item__quantity-control input {
  width: 42px;
  height: 34px;

  padding: 0;

  border: 0;

  border-right: 1px solid rgba(44, 41, 44, 0.12);
  border-left: 1px solid rgba(44, 41, 44, 0.12);

  color: var(--woodera-charcoal);

  font: 600 13px Montserrat, sans-serif;

  text-align: center;
}

.cart-item__quantity-control input::-webkit-inner-spin-button,
.cart-item__quantity-control input::-webkit-outer-spin-button {
  -webkit-appearance: none;

  margin: 0;
}

.cart-item__remove {
  border: 0;

  background: transparent;

  color: rgba(44, 41, 44, 0.58);

  font: 400 12px Montserrat, sans-serif;

  text-decoration: underline;

  cursor: pointer;
}

.cart-item__remove:hover {
  color: var(--woodera-orange);
}

.cart-page__update {
  margin-top: 16px;

  padding: 0;

  border: 0;

  background: transparent;

  color: var(--woodera-orange);

  font: 600 12px Montserrat, sans-serif;

  text-decoration: underline;

  cursor: pointer;
}

.cart-summary {
  padding: 24px;

  background: #F0E9DC;

  border-radius: 8px;
}

.cart-summary__title {
  margin: 0 0 22px;

  color: var(--woodera-charcoal);

  font-size: 22px;
}

.cart-summary__subtotal {
  display: flex;

  justify-content: space-between;

  gap: 16px;

  padding-bottom: 12px;

  border-bottom: 1px solid rgba(44, 41, 44, 0.14);

  color: var(--woodera-charcoal);

  font-size: 15px;
}

.cart-summary__subtotal strong {
  font-size: 18px;
}

.cart-summary__subnote {
  margin: 12px 0 16px;

  color: rgba(44, 41, 44, 0.68);

  font-size: 11px;
  line-height: 1.5;
}

.cart-summary__notice {
  margin-bottom: 20px;

  padding: 16px;

  background: #F7F1E8;

  border: 1px solid rgba(44, 41, 44, 0.08);
  border-radius: 8px;

  color: rgba(44, 41, 44, 0.78);

  font-size: 12px;
  line-height: 1.55;
}

.cart-summary__notes {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 20px;
}

.cart-summary__notes label {
  color: var(--woodera-charcoal);

  font-size: 13px;
  font-weight: 700;
}

.cart-summary__notes label span {
  color: rgba(44, 41, 44, 0.58);

  font-weight: 400;
}

.cart-summary__notes textarea {
  width: 100%;
  min-height: 100px;

  padding: 11px 12px;

  resize: vertical;

  border: 1px solid rgba(44, 41, 44, 0.18);
  border-radius: 6px;

  background: #FFFFFF;

  color: var(--woodera-charcoal);

  font: 400 12px / 1.5 Montserrat, sans-serif;
}

.cart-summary__notes textarea::placeholder {
  color: rgba(44, 41, 44, 0.5);
}

.cart-page__button {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 13px 20px;

  border: 1px solid var(--woodera-orange);
  border-radius: 6px;

  font-size: 13px;
  font-weight: 700;

  text-align: center;

  text-decoration: none;

  cursor: pointer;
}

.cart-page__button--primary {
  background: var(--woodera-orange);

  color: #FFFFFF;
}

.cart-page__button--primary:hover {
  background: #C84F18;

  border-color: #C84F18;
}

.cart-page__button--secondary {
  background: #FFFFFF;

  color: var(--woodera-orange);
}

.cart-page__button--secondary:hover {
  background: var(--woodera-orange);

  color: #FFFFFF;
}

.cart-summary__checkout {
  width: 100%;
}

.cart-summary__checkout-copy {
  margin: 12px 0 0;

  color: rgba(44, 41, 44, 0.68);

  font-size: 11px;
  line-height: 1.55;

  text-align: center;
}

.cart-page__empty {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  min-height: 420px;

  text-align: center;
}

.cart-page__empty-icon {
  width: 64px;
  height: 64px;

  margin-bottom: 20px;

  object-fit: contain;
}

.cart-page__empty-title {
  margin: 0;

  color: var(--woodera-charcoal);

  font-size: 36px;
}

.cart-page__empty-copy {
  margin: 12px 0 24px;

  color: rgba(44, 41, 44, 0.7);

  font-size: 14px;
  line-height: 1.5;
}

.cart-page__empty-actions {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 12px;
}

.product-detail__cart-feedback {
  min-height: 18px;

  margin: 8px 0 0;

  color: var(--woodera-orange);

  font-size: 12px;
  line-height: 1.5;
}

.product-detail__cart-feedback:empty {
  display: none;
}

@media (max-width: 950px) {
  .cart-page {
    padding: 48px 0 64px;
  }

  .cart-page__layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }
}

@media (max-width: 600px) {
  .cart-page__title {
    margin-bottom: 28px;

    font-size: 34px;
  }

  .cart-item {
    grid-template-columns: 90px minmax(0, 1fr);

    gap: 14px;

    padding: 16px 0;
  }

  .cart-item__topline {
    display: block;
  }

  .cart-item__price {
    margin-top: 8px;

    text-align: left;
  }

  .cart-item__title {
    font-size: 17px;
  }

  .cart-item__controls {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }

  .cart-summary {
    padding: 20px;
  }

  .cart-page__empty-title {
    font-size: 30px;
  }

  .cart-page__empty-actions,
  .cart-page__empty-actions .cart-page__button {
    width: 100%;
  }
}


/* =========================================
   NAV ACTION IMAGES
========================================= */

.woodera-header__actions {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  gap: 16px;
}

.woodera-nav-action {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  text-decoration: none;

  flex-shrink: 0;
}

.woodera-nav-action__image {
  display: block;

  width: 26px;
  height: 26px;

  object-fit: contain;

  opacity: 1;
}

.woodera-cart-count {
  position: absolute;

  top: 1px;
  right: 0;

  min-width: 16px;
  height: 16px;

  padding: 0 4px;

  border-radius: 999px;

  background: var(--color-accent);

  color: #FFFFFF;

  font-size: 10px;
  font-weight: 700;
  line-height: 16px;

  text-align: center;
}

.woodera-cart-action {
  display: inline-flex;

  align-items: center;
  justify-content: center;
}

.icon-btn {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 6px;

  color: var(--woodera-charcoal);

  background: transparent;

  text-decoration: none;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.icon-btn:hover {
  color: var(--color-accent);
}

.icon-disabled {
  opacity: 0.28;
}

.cart-count {
  position: relative;

  display: inline-block;

  margin-left: -18px;
  margin-top: -18px;

  padding: 2px 6px;

  background: var(--color-accent);

  color: #FFFFFF;

  border-radius: 99px;

  font-size: 12px;

  transform: translate(12px, -12px);
}


/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement {
  display: block;

  padding-block: 7px;

  background: var(--woodera-cream);

  color: var(--woodera-charcoal);

  font-size: 13px;
  line-height: 1;
}

.announcement .announcement-inner {
  display: grid;

  grid-template-columns: minmax(0, 1fr) auto;

  align-items: center;

  gap: 12px;

  max-width: var(--container-width);

  margin: 0 auto;

  padding-inline: clamp(20px, 4vw, 64px);
}

.announcement .announcement-bar__message {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  min-width: 0;

  justify-self: center;
}

.announcement .announcement-text {
  min-width: 0;

  color: var(--woodera-charcoal);

  font-size: 13px;

  text-decoration: none;
}

.announcement .announcement-text span {
  display: block;

  overflow-wrap: anywhere;
}

.announcement .announcement-bar__lamp {
  display: block;

  width: 16px;
  height: 16px;

  object-fit: contain;

  flex-shrink: 0;
}

.announcement .announcement-right {
  display: flex;

  gap: 10px;

  align-items: center;
  justify-content: flex-end;
}

.announcement .announcement-right img {
  display: block;

  width: 18px;
  height: 18px;

  object-fit: contain;
}


/* =========================================
   ACTIVE NAV STYLING
========================================= */

.woodera-header__menu a {
  position: relative;
}

.woodera-header__menu a.is-active {
  color: var(--color-accent);
}

.woodera-header__menu a.is-active::after {
  content: '';

  position: absolute;

  left: 0;
  right: 0;
  bottom: -8px;

  height: 2px;

  background: var(--color-accent);
}


/* =========================================
   HERO
========================================= */

.woodera-hero {
  width: 100%;
}

.woodera-hero__inner {
  width: min(100%, 1600px);

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 40%)
    minmax(0, 60%);

  min-height: 560px;

  gap: 0;
}

.woodera-hero__content {
  min-width: 0;

  background: var(--woodera-cream);

  padding: clamp(50px, 5vw, 80px);

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.woodera-hero__eyebrow {
  color: var(--color-accent);

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.woodera-hero__heading {
  margin: 0;

  color: var(--woodera-charcoal);

  font-size: clamp(48px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 1.02;

  letter-spacing: -0.035em;
}

.woodera-hero__heading-line {
  display: block;
}

.woodera-hero__highlight {
  color: var(--color-accent);
}

.woodera-hero__description {
  max-width: 540px;

  margin-top: 22px;

  font-size: 16px;
  line-height: 1.65;
}

.woodera-hero__actions {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 14px;

  margin-top: 28px;
}

.woodera-hero__media {
  position: relative;

  min-width: 0;
  min-height: 560px;

  overflow: hidden;
}

.woodera-hero__image,
.woodera-hero__media img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 560px;

  object-fit: cover;
}


/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
  position: relative;

  height: 100%;
}

.hero-slides {
  position: relative;

  height: 100%;

  overflow: hidden;
}

.hero-slide {
  position: absolute;

  inset: 0;

  opacity: 0;

  transform: translateX(0);

  transition: opacity 0.6s ease;

  will-change: opacity;
}

.hero-slide[aria-hidden="false"] {
  position: relative;

  opacity: 1;
}

.hero-arrow {
  position: absolute;

  top: 50%;

  width: 44px;
  height: 44px;

  display: flex;

  align-items: center;
  justify-content: center;

  transform: translateY(-50%);

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;

  cursor: pointer;
}

.hero-prev {
  left: 12px;
}

.hero-next {
  right: 12px;
}

.hero-arrow:hover {
  color: var(--color-accent);
}

.hero-dots {
  position: absolute;

  left: 50%;
  bottom: 14px;

  display: flex;

  gap: 10px;

  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;

  border: 1px solid rgba(44, 41, 44, 0.18);
  border-radius: 999px;

  background: transparent;

  cursor: pointer;
}

.hero-dot[aria-pressed="true"] {
  background: var(--color-accent);

  border-color: var(--color-accent);
}

.btn {
  display: inline-block;

  padding: 12px 22px;

  background: var(--color-accent);

  color: var(--woodera-white);

  border-radius: 6px;

  text-decoration: none;

  font-weight: 700;

  transition: all 0.18s ease;
}

.btn:hover {
  filter: brightness(0.98);

  transform: translateY(-1px);
}

.btn--muted {
  display: inline-block;

  padding: 10px 18px;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;

  color: var(--woodera-charcoal);
}

.hero__media img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 12px;
}


/* =========================================
   GENERIC CARDS
========================================= */

.cards {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

.card {
  background: #FFFFFF;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 6px 20px rgba(44, 41, 44, 0.04);
}

.card__media {
  height: 260px;

  background: #EEEEEE;

  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.card__body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;

  font-size: 18px;
}

.card .meta {
  color: rgba(44, 41, 44, 0.7);

  font-size: 13px;
}

.card .label {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--color-accent);

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


/* =========================================
   FEATURED PROJECTS
========================================= */

.featured-projects {
  padding-top: 56px;
  padding-bottom: 56px;
}

.featured-projects__header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  margin-bottom: 32px;
}

.featured-projects__heading {
  margin: 0;

  color: var(--woodera-charcoal);

  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.featured-projects__subtitle {
  margin: 8px 0 0;

  color: rgba(44, 41, 44, 0.7);

  font-size: 14px;
  line-height: 1.5;
}


/* Featured grid is intentionally independent
   from the generic .cards grid */

.featured-projects__grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 24px;

  align-items: stretch;
}


/* Equal-height cards */

.featured-projects__grid .featured-project-card {
  display: flex;

  flex-direction: column;

  min-width: 0;

  height: 100%;
}


/* Consistent image ratio */

.featured-projects__grid .featured-project-card .card__media {
  width: 100%;
  height: auto;

  aspect-ratio: 4 / 3;

  overflow: hidden;
}

.featured-projects__grid .featured-project-card .card__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Flexible card body */

.featured-projects__grid .featured-project-card .card__body {
  display: flex;

  flex: 1;

  flex-direction: column;

  min-width: 0;
}


/* Protect against long titles */

.featured-projects__grid .project-card__title {
  min-width: 0;

  overflow-wrap: break-word;
}


/* Keep CTA fixed at the bottom
   without changing its original size */

.featured-projects__grid .project-card__button {
  width: fit-content;
  max-width: 100%;

  margin-top: auto;

  align-self: flex-start;

  flex: 0 0 auto;
}


/* Theme editor placeholder */

.featured-project-card--placeholder {
  min-height: 280px;

  display: flex;

  flex-direction: column;
}

.featured-project-card--placeholder .card__body {
  flex: 1;

  display: flex;

  align-items: center;
  justify-content: center;
}


/* Price note */

.featured-projects__price-note {
  max-width: 100%;

  margin-top: 22px;

  color: var(--woodera-charcoal);

  font-size: 13px;
  line-height: 1.55;

  overflow-wrap: break-word;
}


/* Tablet */

@media (max-width: 1199px) {
  .featured-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Mobile */

@media (max-width: 767px) {
  .featured-projects {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .featured-projects__header {
    flex-direction: column;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 26px;
  }

  .featured-projects__grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }
}

@media (max-width: 480px) {
  .featured-projects {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}


/* =========================================
   COLLECTION PAGES
========================================= */

.collection-hero {
  position: relative;

  min-height: 480px;

  overflow: hidden;

  background: var(--woodera-charcoal);
}

.collection-hero__image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.collection-hero__overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.65) 0%,
    rgba(20, 20, 20, 0.35) 38%,
    rgba(20, 20, 20, 0.05) 70%
  );
}

.collection-hero__content {
  position: relative;

  z-index: 1;

  min-height: 480px;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  color: #FFFFFF;
}

.collection-hero__content h1 {
  margin: 0;

  color: #FFFFFF;

  font-size: clamp(48px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
}

.collection-hero__subtitle {
  margin: 16px 0 0;

  color: #FFFFFF;

  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

.collection-hero__description {
  max-width: 620px;

  margin: 14px 0 0;

  color: rgba(255, 255, 255, 0.9);

  font-size: 16px;
  line-height: 1.6;
}

.collection-benefits {
  padding: 30px 0;

  background: #F7F1E8;
}

.collection-benefits__grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-benefits__item {
  display: grid;

  grid-template-columns: 48px minmax(0, 1fr);

  gap: 14px;

  align-items: start;

  padding: 0 24px;
}

.collection-benefits__item:not(:last-child) {
  border-right: 1px solid rgba(44, 41, 44, 0.12);
}

.collection-benefits__item:first-child {
  padding-left: 0;
}

.collection-benefits__item:last-child {
  padding-right: 0;
}

.collection-benefits__item img {
  display: block;

  width: 48px;
  height: 48px;

  object-fit: contain;
}

.collection-benefits__item h2 {
  margin: 0;

  color: #2C292C;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.collection-benefits__item p {
  margin: 6px 0 0;

  color: #2C292C;

  opacity: 0.8;

  font-size: 13px;
  line-height: 1.5;
}

.collection-projects {
  padding: 64px 0 72px;
}

.collection-projects__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;
}

.collection-projects__grid .card {
  border: 1px solid rgba(44, 41, 44, 0.1);

  box-shadow: none;
}

.collection-projects__grid .card__media {
  height: auto;

  aspect-ratio: 4 / 3;
}

.project-card__title {
  margin: 0 0 12px;

  font-size: 18px;
  line-height: 1.3;
}

.project-card__title a {
  text-decoration: none;
}

.project-card__meta,
.project-card__price {
  color: rgba(44, 41, 44, 0.75);

  font-size: 13px;
  line-height: 1.5;
}

.project-card__price {
  margin-top: 4px;
}

.project-card__button {
  display: inline-block;

  margin-top: 16px;

  padding: 10px 16px;

  border: 1px solid var(--woodera-orange);
  border-radius: 6px;

  color: var(--woodera-orange);

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.project-card__button:hover {
  background: var(--woodera-orange);

  color: #FFFFFF;
}

.collection-projects__empty {
  padding: 48px 24px;

  border: 1px solid rgba(44, 41, 44, 0.12);

  color: rgba(44, 41, 44, 0.75);

  text-align: center;
}

.collection-pagination {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 8px;

  margin-top: 40px;
}

.collection-pagination a,
.collection-pagination span {
  min-width: 36px;

  padding: 9px 12px;

  border: 1px solid rgba(44, 41, 44, 0.16);
  border-radius: 5px;

  font-size: 13px;

  text-align: center;

  text-decoration: none;
}

.collection-pagination a:hover {
  border-color: var(--woodera-orange);

  color: var(--woodera-orange);
}

.collection-measurement-cta {
  padding: 32px 0 36px;

  background: #F7F1E8;
}

.collection-measurement-cta__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.collection-measurement-cta h2 {
  margin: 0;

  color: #2C292C;

  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.2;
}

.collection-measurement-cta p {
  max-width: 680px;

  margin: 8px 0 0;

  color: #2C292C;

  font-size: 14px;
  line-height: 1.5;
}

.collection-measurement-cta small {
  display: block;

  margin-top: 8px;

  color: rgba(44, 41, 44, 0.7);

  font-size: 12px;
}

.collection-measurement-cta__actions {
  display: grid;

  grid-template-columns: repeat(2, minmax(120px, 1fr));

  gap: 10px;

  flex: 0 0 330px;
}

.collection-measurement-cta__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 10px 14px;

  border: 1px solid var(--woodera-orange);
  border-radius: 6px;

  font-size: 13px;
  font-weight: 700;

  text-align: center;

  text-decoration: none;
}

.collection-measurement-cta__button--primary {
  background: var(--woodera-orange);

  color: #FFFFFF;
}

.collection-measurement-cta__button--secondary {
  background: #FFFFFF;

  color: var(--woodera-orange);
}

@media (max-width: 1000px) {
  .collection-hero,
  .collection-hero__content {
    min-height: 400px;
  }

  .collection-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px 0;
  }

  .collection-benefits__item {
    padding: 0 20px;
  }

  .collection-benefits__item:nth-child(2n) {
    padding-right: 0;

    border-right: 0;
  }

  .collection-benefits__item:nth-child(2n + 1) {
    padding-left: 0;
  }

  .collection-benefits__item:nth-child(-n + 2) {
    padding-bottom: 24px;

    border-bottom: 1px solid rgba(44, 41, 44, 0.12);
  }

  .collection-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-measurement-cta__inner {
    align-items: flex-start;

    flex-direction: column;
  }

  .collection-measurement-cta__actions {
    width: 100%;

    max-width: 420px;

    flex-basis: auto;
  }
}

@media (max-width: 600px) {
  .collection-hero,
  .collection-hero__content {
    min-height: 340px;
  }

  .collection-hero__content h1 {
    font-size: 44px;
  }

  .collection-hero__description {
    font-size: 14px;
  }

  .collection-benefits {
    padding: 28px 0;
  }

  .collection-benefits__grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .collection-benefits__item,
  .collection-benefits__item:nth-child(2n),
  .collection-benefits__item:nth-child(2n + 1) {
    grid-template-columns: 48px minmax(0, 1fr);

    padding: 0;

    border: 0;
  }

  .collection-projects {
    padding: 44px 0 52px;
  }

  .collection-projects__grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .collection-measurement-cta__actions {
    grid-template-columns: 1fr;

    max-width: none;
  }
}


/* =========================================
   GENERIC CARD RESPONSIVE
========================================= */

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    padding: var(--section-gap-desktop) 0;
  }
}

@media (min-width: 1100px) {
  .cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 64px 0;

  background: var(--woodera-charcoal);

  color: var(--woodera-white);
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 32px;

  max-width: var(--container-width);

  margin: 0 auto;

  padding-inline: clamp(20px, 4vw, 64px);
}

.site-footer a {
  color: var(--woodera-white);
}

@media (max-width: 900px) {
  .woodera-hero__inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   ACCESSIBILITY
========================================= */

.visually-hidden {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0 0 0 0);

  white-space: nowrap;

  border: 0;
}


/* =========================================
   UTILITIES
========================================= */

.text-center {
  text-align: center;
}

.muted {
  color: rgba(255, 255, 255, 0.75);
}


/* =========================================
   WHY CHOOSE WOODERA
========================================= */

.why-woodera {
  margin-bottom: 50px;

  padding: 44px 0 46px;

  background: #F7F1E8;
}

.why-woodera__title {
  margin: 0 0 34px;

  color: #2C292C;

  font-size: clamp(30px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.15;

  text-align: center;
}

.why-woodera__grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-woodera__item {
  display: grid;

  grid-template-columns: 58px minmax(0, 1fr);

  gap: 18px;

  align-items: start;

  padding: 0 34px;
}

.why-woodera__item:not(:last-child) {
  border-right: 1px solid rgba(44, 41, 44, 0.12);
}

.why-woodera__item:first-child {
  padding-left: 0;
}

.why-woodera__item:last-child {
  padding-right: 0;
}

.why-woodera__icon {
  display: block;

  width: 58px;
  height: 58px;

  object-fit: contain;
}

.why-woodera__content h3 {
  margin: 0 0 8px;

  color: #2C292C;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.why-woodera__content p {
  margin: 0;

  color: #2C292C;

  opacity: 0.85;

  font-size: 14px;
  line-height: 1.55;
}


/* =========================================
   PROJECT PRICE NOTE
========================================= */

.project-price-note {
  max-width: 1380px;

  margin-inline: auto;

  display: flex;

  align-items: center;
  justify-content: flex-start;

  gap: 8px;

  padding: 12px 0 24px;
}

.project-price-note__icon {
  width: 16px;
  height: 16px;

  flex: 0 0 16px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #2C292C;

  color: #FFFFFF;

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.project-price-note__text {
  margin: 0;

  color: #2C292C;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}


/* =========================================
   FOLLOW OUR WORK
========================================= */

.follow-work {
  padding: 20px 0;

  background: #F7F1E8;
}

.follow-work__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.follow-work__content {
  min-width: 0;
}

.follow-work__content h2 {
  margin: 0;

  color: #2C292C;

  font-size: clamp(24px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}

.follow-work__content p {
  margin: 4px 0 0;

  color: #2C292C;

  opacity: 0.75;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.follow-work__action {
  min-height: 40px;

  padding: 8px 18px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  flex-shrink: 0;

  border: 1px solid rgba(44, 41, 44, 0.35);
  border-radius: 6px;

  background: #FFFFFF;

  color: #2C292C;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;

  text-decoration: none;

  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.follow-work__action:hover {
  border-color: #DF6022;

  background: #FFF8F2;

  color: #DF6022;
}

.follow-work__icon {
  width: 16px;
  height: 16px;

  object-fit: contain;

  flex-shrink: 0;
}

@media (max-width: 700px) {
  .follow-work__inner {
    align-items: flex-start;

    flex-direction: column;

    gap: 14px;
  }

  .follow-work__action {
    max-width: 100%;
  }
}


/* =========================================
   MEASUREMENT VISIT
========================================= */

.measurement-visit {
  padding: 56px 0 64px;
}

.measurement-visit__inner {
  display: grid;

  grid-template-columns:
    minmax(0, 44fr)
    minmax(0, 56fr);

  gap: 56px;

  align-items: center;
}

.measurement-visit__media {
  min-width: 0;

  aspect-ratio: 3 / 2;

  overflow: hidden;

  border-radius: 12px;
}

.measurement-visit__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 12px;
}

.measurement-visit__content {
  min-width: 0;
}

.measurement-visit__eyebrow {
  color: #DF6022;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}

.measurement-visit__title {
  margin: 8px 0 0;

  color: #2C292C;

  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.measurement-visit__description {
  max-width: 620px;

  margin: 14px 0 0;

  color: #2C292C;

  font-size: 16px;
  line-height: 1.6;
}

.measurement-visit__details {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 14px;

  margin-top: 24px;
}

.measurement-visit__detail {
  padding: 14px 12px;

  background: #FFFFFF;

  border: 1px solid rgba(44, 41, 44, 0.12);
  border-radius: 8px;

  text-align: center;
}

.measurement-visit__detail-value {
  color: #2C292C;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.measurement-visit__detail-label {
  margin-top: 4px;

  color: rgba(44, 41, 44, 0.72);

  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.measurement-visit__actions {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1.25fr);

  gap: 14px;

  margin-top: 16px;
}

.measurement-visit__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 12px 18px;

  border: 1px solid #DF6022;
  border-radius: 7px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;

  text-align: center;

  text-decoration: none;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.measurement-visit__button--primary {
  background: #DF6022;

  color: #FFFFFF;
}

.measurement-visit__button--primary:hover {
  background: #C84F18;

  border-color: #C84F18;

  color: #FFFFFF;
}

.measurement-visit__button--secondary {
  background: #FFFFFF;

  color: #DF6022;

  font-weight: 600;
}

.measurement-visit__button--secondary:hover {
  background: #DF6022;

  color: #FFFFFF;
}

.measurement-visit__footnote {
  margin-top: 12px;

  color: rgba(44, 41, 44, 0.72);

  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .measurement-visit {
    padding: 48px 0 56px;
  }

  .measurement-visit__inner {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .measurement-visit__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .measurement-visit {
    padding: 40px 0 48px;
  }

  .measurement-visit__inner {
    gap: 28px;
  }

  .measurement-visit__details {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .measurement-visit__actions {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .measurement-visit__footnote {
    font-size: 12px;
  }
}


/* =========================================
   WHY WOODERA RESPONSIVE
========================================= */

@media (max-width: 1000px) {
  .why-woodera {
    padding: 40px 0 42px;
  }

  .why-woodera__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px 0;
  }

  .why-woodera__item {
    padding: 0 24px;
  }

  .why-woodera__item:nth-child(2n) {
    padding-right: 0;

    border-right: 0;
  }

  .why-woodera__item:nth-child(2n + 1) {
    padding-left: 0;
  }

  .why-woodera__item:nth-child(-n + 2) {
    padding-bottom: 28px;

    border-bottom: 1px solid rgba(44, 41, 44, 0.12);
  }

  .why-woodera__item:nth-child(3) {
    border-right: 1px solid rgba(44, 41, 44, 0.12);
  }
}

@media (max-width: 600px) {
  .why-woodera {
    margin-bottom: 45px;

    padding: 38px 0 40px;
  }

  .why-woodera__title {
    margin-bottom: 28px;

    font-size: 30px;
  }

  .why-woodera__grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .why-woodera__item,
  .why-woodera__item:nth-child(2n),
  .why-woodera__item:nth-child(2n + 1),
  .why-woodera__item:nth-child(3) {
    grid-template-columns: 52px minmax(0, 1fr);

    padding: 0;

    border: 0;
  }

  .why-woodera__icon {
    width: 52px;
    height: 52px;
  }

  .why-woodera__content h3 {
    font-size: 17px;
  }

  .project-price-note {
    align-items: flex-start;

    padding-top: 10px;
    padding-bottom: 20px;
  }
}


/* =========================================
   WOODERA HEADER — FINAL DESKTOP LAYOUT
========================================= */

.site-header {
  position: relative;

  z-index: 50;

  width: 100%;

  background: #FFFFFF;

  border-bottom: 1px solid rgba(44, 41, 44, 0.08);
}

.woodera-header__container {
  width: 100%;
  max-width: 1600px;

  margin-inline: auto;

  padding-inline: clamp(28px, 4vw, 72px);
}

.woodera-header__inner {
  min-height: 116px;

  display: grid;

  grid-template-columns:
    220px
    minmax(0, 1fr)
    150px;

  align-items: center;

  column-gap: clamp(32px, 3vw, 58px);
}


/* Logo */

.woodera-header__brand {
  display: flex;

  align-items: center;
  justify-content: flex-start;

  min-width: 0;

  flex: 0 0 auto;
}

.woodera-header__brand-link {
  display: inline-flex;

  align-items: center;

  text-decoration: none;
}

.woodera-header__logo,
.woodera-header__brand img {
  display: block;

  width: 190px;
  max-width: 100%;
  height: auto;

  object-fit: contain;
}


/* Desktop Navigation */

.woodera-header__nav {
  min-width: 0;
  width: 100%;

  justify-self: stretch;
}

.woodera-header__menu {
  list-style: none;

  padding: 0;
  margin: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: nowrap;

  gap: clamp(22px, 2vw, 38px);
}

.woodera-header__menu-item {
  flex: 0 0 auto;
}

.woodera-header__menu-link {
  position: relative;

  display: inline-flex;

  align-items: center;

  min-height: 44px;

  color: #2C292C;

  text-decoration: none;

  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.woodera-header__menu-link:hover,
.woodera-header__menu-link.is-active {
  color: #DF6022;
}

.woodera-header__menu-link.is-active::after {
  content: '';

  position: absolute;

  left: 0;
  right: 0;
  bottom: 1px;

  height: 2px;

  background: #DF6022;
}


/* Right Actions */

.woodera-header__actions {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  flex-wrap: nowrap;

  gap: 14px;

  min-width: 0;

  flex-shrink: 0;

  white-space: nowrap;
}

.woodera-nav-action {
  position: relative;

  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  text-decoration: none;

  background: transparent;

  border: 0;
}

.woodera-nav-action__image {
  display: block;

  width: 27px;
  height: 27px;

  object-fit: contain;

  opacity: 1;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.woodera-nav-action:hover .woodera-nav-action__image {
  transform: translateY(-1px);

  opacity: 0.8;
}


/* Cart */

.woodera-cart-action {
  position: relative;
}

.woodera-cart-count {
  position: absolute;

  top: -1px;
  right: -2px;

  min-width: 16px;
  height: 16px;

  padding: 0 4px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: #DF6022;

  color: #FFFFFF;

  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}


/* Mobile Toggle */

.woodera-mobile-toggle {
  display: none;

  width: 38px;
  height: 38px;

  padding: 7px;

  border: 0;

  background: transparent;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;
}

.woodera-mobile-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  background: #2C292C;

  border-radius: 2px;
}


/* Medium desktop */

@media (max-width: 1350px) {
  .woodera-header__container {
    padding-inline: 32px;
  }

  .woodera-header__inner {
    grid-template-columns:
      165px
      minmax(0, 1fr)
      140px;

    column-gap: 20px;
  }

  .woodera-header__logo,
  .woodera-header__brand img {
    width: 160px;
  }

  .woodera-header__menu {
    gap: 18px;
  }

  .woodera-header__menu-link {
    font-size: 13px;
  }
}


/* Collapse desktop navigation */

@media (max-width: 1200px) {
  .woodera-header__inner {
    min-height: 88px;

    grid-template-columns:
      auto
      1fr
      auto;

    column-gap: 20px;
  }

  .woodera-header__nav {
    display: none;
  }

  .woodera-header__actions {
    grid-column: 3;

    gap: 10px;
  }

  .woodera-mobile-toggle {
    display: inline-flex;
  }

  .woodera-header__brand img {
    width: 155px;
  }
}


/* Mobile */

@media (max-width: 767px) {
  .woodera-header__container {
    padding-inline: 18px;
  }

  .woodera-header__inner {
    min-height: 78px;

    grid-template-columns:
      minmax(0, 1fr)
      auto;

    column-gap: 12px;
  }

  .woodera-header__brand {
    grid-column: 1;
  }

  .woodera-header__actions {
    grid-column: 2;

    gap: 5px;
  }

  .woodera-header__logo,
  .woodera-header__brand img {
    width: 135px;
  }

  .woodera-nav-action {
    width: 34px;
    height: 34px;

    flex-basis: 34px;
  }

  .woodera-nav-action__image {
    width: 23px;
    height: 23px;
  }
}


/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {
  width: 100%;

  background: #FFFFFF;

  border-top: 1px solid rgba(44, 41, 44, 0.08);
  border-bottom: 1px solid rgba(44, 41, 44, 0.08);
}

.mobile-nav__inner {
  padding: 18px 24px 24px;
}

.mobile-nav__menu {
  list-style: none;

  margin: 0;
  padding: 0;

  display: flex;

  flex-direction: column;
}

.mobile-nav__menu li + li {
  border-top: 1px solid rgba(44, 41, 44, 0.06);
}

.mobile-nav__menu a {
  display: block;

  padding: 14px 0;

  color: #2C292C;

  text-decoration: none;

  font-size: 15px;
  font-weight: 500;
}

.mobile-nav__menu a.is-active {
  color: #DF6022;
}


/* =========================================
   SERVICE CATEGORIES HEADER
========================================= */

.service-categories__header {
  margin-bottom: 42px;

  text-align: center;
}

.service-categories__title {
  margin: 0;

  color: #2C292C;

  font-size: clamp(30px, 2.3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.service-categories__subtitle {
  display: block !important;

  visibility: visible !important;

  opacity: 1 !important;

  max-width: 620px;

  margin: 10px auto 0;

  color: #2C292C !important;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;

  text-align: center;
}

#woodera-services {
  scroll-margin-top: 120px;
}