@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@700&family=Figtree:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
    --typeHeaderPrimary: Cormorant;
    --typeHeaderFallback: serif;
    --typeHeaderSize: 36px;
    --typeHeaderWeight: 700;
    --typeHeaderLineHeight: 1;
    --typeHeaderSpacing: 0.0em;

    --typeBasePrimary:Figtree;
    --typeBaseFallback:sans-serif;
    --typeBaseSize: 18px;
    --typeBaseWeight: 400;
    --typeBaseSpacing: 0.025em;
    --typeBaseLineHeight: 1.4;
    --typeBaselineHeightMinus01: 1.3;

    --typeCollectionTitle: 20px;

    --iconWeight: 2px;
    --iconLinecaps: miter;

    
        --buttonRadius: 0;
    

    --colorGridOverlayOpacity: 0.1;
    }

    .placeholder-content {
    background-image: linear-gradient(100deg, #ffffff 40%, #f7f7f7 63%, #ffffff 79%);
    }

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

html {
  font-size: var(--typeBaseSize);
}

body {
    font-family: var(--typeBasePrimary), var(--typeBaseFallback);
    font-weight: var(--typeBaseWeight);
    line-height: var(--typeBaseLineHeight);
    letter-spacing: var(--typeBaseSpacing);
    color: #333;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-weight: var(--typeHeaderWeight);
  line-height: var(--typeHeaderLineHeight);
    letter-spacing: var(--typeHeaderSpacing);
    text-transform: uppercase;
}

a {color:inherit;text-decoration:none}
ul{list-style:none}
img{max-width:100%;height:auto;display:block}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
    clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px;
  z-index: 10000;
  background: #fff;
}

.page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.page-width--narrow {
  max-width: 780px;
}
.page-width--flush-small{}

.text-center{text-align:center}
.no-bullets{list-style:none;padding:0;margin:0}
.inline-list{display:flex;align-items:center;gap:15px;padding:0;margin:0}

  .small--hide {
    display: block;
  }
.medium-up--hide{display:none}

@media only screen and (max-width: 768px) {
    .small--hide {
      display: none !important;
    }
  .medium-up--hide{display:block}
}


/* ========================
   TOOLBAR
   ======================== */
.toolbar {
  background: #111111;
  color: #fff;
  font-size: 11px;
    letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 0;
}
.toolbar--transparent {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 12;
    color: #fff;
}
.toolbar__content {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}
.toolbar__item--menu a {
  padding: 0 8px;
  opacity: 0.85;
  transition: opacity .2s;
}
.toolbar__item--menu a:hover{opacity:1}


/* ========================
   HEADER
   ======================== */
.header-sticky-wrapper {
  position: relative;
  z-index: 10;
}
.header-wrapper--sticky {
  position: relative;
}
   .site-header {
      box-shadow: 0 0 1px rgba(0,0,0,0.2);
    }
.is-light .site-header {
  background: transparent;
  box-shadow: none;
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
}

    .toolbar + .header-sticky-wrapper .site-header {
      border-top: 0;
    }

.header-layout {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
    align-items: center;
    padding: 12px 0;
}
.header-layout--left-center {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-item--logo,
    .header-layout--left-center .header-item--logo,
    .header-layout--left-center .header-item--icons {
      -webkit-box-flex: 0 1 110px;
      -ms-flex: 0 1 110px;
      flex: 0 1 110px;
    }

    @media only screen and (min-width: 769px) {
      .header-item--logo,
      .header-layout--left-center .header-item--logo,
      .header-layout--left-center .header-item--icons {
        -webkit-box-flex: 0 0 200px;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
      }
    }

.header-item--navigation {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.site-header__logo a, .site-header__logo-link {
    display: block;
      width: 110px;
      position: relative;
    }
    @media only screen and (min-width: 769px) {
      .site-header__logo a, .site-header__logo-link {
        width: 200px;
      }
    }
.site-header__logo img {
  width: 100%;
  height: auto;
}
.is-light .logo--has-inverted {
  display: none;
}
.logo--inverted {
    display: none;
}
.is-light .logo--inverted {
  display: block;
}

  .site-nav__link,
  .site-nav__dropdown-link:not(.site-nav__dropdown-link--top-level) {
    font-size: 13px;
  }
  
    .site-nav__link, .mobile-nav__link--top-level {
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }

.site-nav {
  display: flex;
    align-items: center;
}
.site-navigation {
  display: flex;
  gap: 0;
  justify-content: center;
}
.site-nav__item {
  position: relative;
}
.site-nav__link {
  display: inline-block;
    padding: 10px 15px;
    transition: opacity .25s;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}
.site-nav__link:hover{opacity:.65}
.site-nav__link--underline:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform .3s;
}
.site-nav__item:hover .site-nav__link--underline:after {
  transform: scaleX(1);
}

.site-nav__icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}
.site-nav__link--icon {
    padding: 10px 8px;
    position: relative;
}
.site-nav__link--icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
    stroke-width: var(--iconWeight);
    stroke-linecap: var(--iconLinecaps);
    stroke-linejoin: var(--iconLinecaps);
}

.cart-count-badge {
  position: absolute;
  top: 4px;
  right: 0;
  background: #111;
  color: #fff;
  font-size: 10px;
  width: 18px;height: 18px;
  border-radius: 50%;
  display: flex;align-items: center;justify-content: center;
  font-family: Figtree, sans-serif;
  line-height: 1;
}
.is-light .cart-count-badge {
  background: #fff;
  color: #111;
}


/* ========================
   HERO
   ======================== */
.index-section--hero {
    position: relative;
}
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero--650px {
  height: 650px;
}
.hero--400px {
  height: 400px;
}
.hero--mobile--auto {
}
@media only screen and (max-width: 768px) {
  .hero--650px {
    height: 420px;
  }
  .hero--400px {
    height: 300px;
  }
}

.hero__media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero__media-container {
  width: 100%;
  height: 100%;
}
.hero__image-wrapper {
  position: absolute;
  top: 0;left: 0;right: 0;bottom: 0;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__text-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
}
.hero:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 2;
      background-color: #000;
      opacity: 0.55;
    }
.hero__text-content {
  position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 40px 0;
}
.hero__text-shadow {
  position: relative;
  z-index: 4;
}

.h1, .hero__title {
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-weight: var(--typeHeaderWeight);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 30.0px;
  }
  @media only screen and (min-width: 769px) {
    .h1, .hero__title {
      font-size: 60px;
    }
  }

.hero__link {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--typeBasePrimary), var(--typeBaseFallback);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    transition: background .3s, color .3s;
    border-radius: var(--buttonRadius);
}
.btn--inverse {
  color: #fff;
  border-color: #fff;
}
.btn--inverse:hover {
    background: #fff;
    color: #111111;
}
.btn--primary {
  background: #111111;
  color: #fff;
  border-color: #111111;
}
.btn--primary:hover {
  background: #333;
  border-color: #333;
}
.btn--secondary {
    color: #333;
    border-color: #333;
}
.btn--small {
  padding: 8px 18px;
  font-size: 11px;
}


/* ========================
   SECTIONS
   ======================== */
.index-section {
  padding: 60px 0;
}
.section--alt-bg {
  background: #f8f7f5;
}
.section-header {
  margin-bottom: 30px;
  text-align: center;
}
.section-header__title {
    font-size: var(--typeHeaderSize);
    margin-bottom: 10px;
}

/* about text */
.enlarge-text h3 {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 20px;
}
@media only screen and (min-width: 769px) {
  .enlarge-text h3 {
    font-size: 28px;
  }
}
.about-body-txt {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
  margin-top: 10px;
}


/* ========================
   PRODUCT GRID
   ======================== */
.grid-overflow-wrapper{overflow:visible}
.grid--uniform {
  display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
.grid__item {
  padding: 10px;
}
.grid-product {
  width: 50%;
}
@media only screen and (min-width: 769px) {
  .grid-product.medium-up--one-quarter {
    width: 25%;
  }
}

.grid-product__content {
  position: relative;
}
.grid-product__image-mask {
    overflow: hidden;
    background: #f5f5f3;
}
.grid__image-ratio--square {
  position: relative;
  padding-bottom: 100%;
}
.grid__image-ratio--square img {
  position: absolute;
  top: 0;left: 0;
  width: 100%;height: 100%;
  object-fit: contain;
  padding: 15px;
}
.grid-product__meta {
    padding: 12px 0;
    text-align: center;
}
.grid-product__title--body {
    font-family: var(--typeBasePrimary), var(--typeBaseFallback);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    color: #111;
}
.grid-product__price {
  font-size: 15px;
  color: #333;
  margin-bottom: 4px;
}
.grid-product__detail {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}
.grid-product__stock {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.grid-product__stock.in-stock{color:#2a7d2a}
.grid-product__stock.low-stock{color:#c5770a}
.btn-add-cart{margin-top:4px}


/* ========================
   REASONS / WHY US
   ======================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.reason-card {
    text-align: center;
    padding: 20px;
}
.reason-icon {
  margin-bottom: 15px;
}
.reason-title {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.reason-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* ========================
   CTA CUSTOM DESIGN
   ======================== */
.cta-custom-block {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .cta-custom-block {
    flex-direction: column;
    gap: 25px;
  }
}
.cta-custom__text {
  flex: 1;
}
.cta-custom__text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.cta-custom__img {
    flex: 1;
}
.cta-custom__img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}


/* ========================
   FAQ
   ======================== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--typeBasePrimary), var(--typeBaseFallback);
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-align: left;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* ========================
   TESTIMONIALS
   ======================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.testimonial-card {
  background: #f8f7f5;
  overflow: hidden;
}
.testimonial-img {
  height: 220px;
  overflow: hidden;
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-body {
  padding: 20px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}
.testimonial-role {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}


/* ========================
   CART DRAWER
   ======================== */
.cart-overlay {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: rgba(0,0,0,0.4);
    z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.cart-overlay.is-open {
  opacity: 1;visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;right: 0;bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
}
.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 15px 25px;
}
.cart-empty-msg {
    color: #888;
    text-align: center;
    padding: 40px 0;
    font-size: 15px;
}
.cart-drawer__total {
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-line__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cart-line__name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.cart-line__price {
  font-size: 13px;
  color: #666;
}
.cart-line__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.cart-qty-btn, .cart-remove-btn {
  background: none;
  border: 1px solid #ddd;
  cursor: pointer;
  width: 28px;height: 28px;
  display: flex;align-items: center;justify-content: center;
  font-size: 14px;color: #333;
  transition: border-color .2s;
}
.cart-qty-btn:hover,.cart-remove-btn:hover{border-color:#111}
.cart-remove-btn{border:none;color:#999;font-size:16px}
.cart-remove-btn:hover{color:#c00}


/* ========================
   CHECKOUT MODAL
   ======================== */
.checkout-overlay {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.checkout-overlay.is-open{opacity:1;visibility:visible}
.checkout-modal {
  position: fixed;
  top: 50%;left: 50%;
  transform: translate(-50%,-50%) scale(0.95);
  background: #fff;
  z-index: 1001;
  width: 520px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.checkout-modal.is-open {
  opacity: 1;visibility: visible;
  transform: translate(-50%,-50%) scale(1);
}
.checkout-modal__inner {
    padding: 35px 30px;
    position: relative;
}
.checkout-close {
  position: absolute;
  top: 15px;right: 15px;
  background: none;border: none;cursor: pointer;
  padding: 5px;
}

.checkout-items-list {
  margin-bottom: 25px;
  border: 1px solid #eee;
  padding: 15px;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: #555;
}
.checkout-line--total {
  border-top: 1px solid #ddd;
  margin-top: 8px;
  padding-top: 10px;
  font-weight: 600;
  color: #111;
  font-size: 16px;
}

.form-row {
  margin-bottom: 14px;
}
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #444;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  font-family: var(--typeBasePrimary), var(--typeBaseFallback);
  font-size: 15px;
  color: #333;
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: #111;
}

/* spinner */
.lds-ring {
    display: inline-block;
    width: 48px;height: 48px;
    position: relative;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 38px;height: 38px;
    margin: 5px;
    border: 3px solid #111;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5,0,0.5,1) infinite;
    border-color: #111 transparent transparent transparent;
}
.lds-ring div:nth-child(1){animation-delay:-0.45s}
.lds-ring div:nth-child(2){animation-delay:-0.3s}
.lds-ring div:nth-child(3){animation-delay:-0.15s}
@keyframes lds-ring {
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}


/* ========================
   FOOTER
   ======================== */
.site-footer {
    background: #111111;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
    font-size: 14px;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
    transition: color .2s;
}
.site-footer a:hover {
  color: #fff;
}

.site-footer .grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.h4, .footer__title {
  font-family: var(--typeBasePrimary), var(--typeBaseFallback);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 15px;
}

.site-footer__linklist {
  padding: 0;
  margin: 0;
}
.site-footer__linklist li {
    margin-bottom: 8px;
}

@media only screen and (min-width: 769px) and (max-width: 959px) {
              .footer__item--footer-1 {
                width: 50%;
                padding-top: 40px;
              }
              .footer__item--footer-1:nth-child(2n + 1) {
                clear: left;
              }
            }
            @media only screen and (min-width: 960px) {
              .footer__item--footer-1 {
                width: 15%;
              }

            }

@media only screen and (min-width: 769px) and (max-width: 959px) {
              .footer__item--menu_grv02 {
                width: 50%;
                padding-top: 40px;
              }
              .footer__item--menu_grv02:nth-child(2n + 1) {
                clear: left;
              }
            }
            @media only screen and (min-width: 960px) {
              .footer__item--menu_grv02 {
                width: 15%;
              }

            }

@media only screen and (min-width: 769px) and (max-width: 959px) {
              .footer__item--footer2 {
                width: 50%;
                padding-top: 40px;
              }
              .footer__item--footer2:nth-child(2n + 1) {
                clear: left;
              }
            }
            @media only screen and (min-width: 960px) {
              .footer__item--footer2 {
                width: 33%;
              }

            }

@media only screen and (max-width: 768px) {
  .site-footer .grid {
    flex-direction: column;
  }
  .site-footer .grid__item {
    width: 100%;
    margin-bottom: 30px;
  }
}

.footer-imprint-block {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}
.footer-imprint-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.footer-logo-text {
    display: block;
    text-align: center;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 auto 20px;
    transition: opacity .2s;
}
.footer-logo-text:hover {
    opacity: 0.7;
    color: #fff;
}

.footer__small-text {
    text-align: center;
    font-size: 12px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.5);
}

.horizontal-list {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 0;
    margin: 15px 0 0;
    font-size: 12px;
}
.horizontal-list li {
    position: relative;
}
.horizontal-list li + li:before {
    content: '\00b7';
    position: absolute;
    left: -12px;
    color: rgba(255,255,255,0.4);
}


/* ========================
   MOBILE NAV DRAWER
   ======================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;right: 0;bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    overflow-y: auto;
  padding: 20px 25px;
}
.mobile-nav-drawer.is-open {
  transform: translateX(0);
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: rgba(0,0,0,0.4);
    z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.mobile-nav__close button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav__list {
  padding: 0;
    margin: 0;
}
.mobile-nav__item {
  border-bottom: 1px solid #eee;
}
.mobile-nav__link--top-level {
    display: block;
    padding: 14px 0;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #333;
}


/* ========================
   POLICY PAGES
   ======================== */
.page-header-block {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.page-header-block__title {
  font-size: var(--typeHeaderSize);
}
.policy-content h3 {
    font-size: 20px;
    margin: 30px 0 10px;
    letter-spacing: 0.02em;
}
.policy-content h3:first-of-type {
  margin-top: 15px;
}
.policy-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}
.policy-content a {
  color: #111;
  text-decoration: underline;
    text-underline-offset: 3px;
}
.policy-content a:hover {
  color: #555;
}
.policy-content strong {
  color: #222;
  font-weight: 600;
}


/* ========================
   GDPR COOKIE BANNER
   ======================== */
.gdpr-banner {
  position: fixed;
  bottom: 0;left: 0;right: 0;
  background: #111111;
  color: rgba(255,255,255,0.85);
  z-index: 9999;
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.gdpr-banner.is-visible {
    transform: translateY(0);
}
.gdpr-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.gdpr-banner__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  min-width: 240px;
}
.gdpr-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gdpr-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.gdpr-btn {
  padding: 9px 22px;
  font-family: var(--typeBasePrimary), var(--typeBaseFallback);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .2s, color .2s;
  border-radius: 0;
}
.gdpr-btn:hover {
    background: rgba(255,255,255,0.15);
}
.gdpr-btn--accept {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.gdpr-btn--accept:hover {
  background: #ddd;
}


/* ========================
   GALLERY GRID
   ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 959px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 589px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.gallery-card {
    background: #f8f7f5;
    overflow: hidden;
}
.gallery-card__img {
  height: 280px;
  overflow: hidden;
}
.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-card:hover .gallery-card__img img {
  transform: scale(1.04);
}
.gallery-card__caption {
    padding: 15px 18px;
}
.gallery-card__title {
    font-family: var(--typeBasePrimary), var(--typeBaseFallback);
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}
.gallery-card__desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}


/* ========================
   ABOUT SPLIT (who we are)
   ======================== */
.about-split {
    display: flex;
    gap: 45px;
    align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .about-split {
    flex-direction: column;
    gap: 25px;
  }
}
.about-split__photo {
  flex: 0 0 45%;
}
.about-split__photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .about-split__photo img {
    height: 260px;
  }
}
.about-split__text {
    flex: 1;
}
.about-split__text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}


/* ========================
   PRICING GRID
   ======================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 959px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 589px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.pricing-card {
    background: #fff;
    border: 1px solid #e5e4e1;
    text-align: center;
}
.pricing-card--featured {
    border-color: #111;
    position: relative;
}
.pricing-card--featured:after {
  content: '';
  position: absolute;
  top: 0;left: 0;right: 0;
  height: 3px;
  background: #111;
}
.pricing-card__header {
    padding: 25px 20px 20px;
    border-bottom: 1px solid #eee;
}
.pricing-card__title {
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pricing-card__from {
  font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 2px;
}
.pricing-card__price {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}
.pricing-card__unit {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
.pricing-card__body {
    padding: 20px;
    text-align: left;
}
.pricing-card__body p {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f3;
  line-height: 1.5;
}
.pricing-card__body p:last-child {
  border-bottom: none;
}
.pricing-note {
  color: #111 !important;
  font-weight: 600;
  font-size: 12px !important;
  margin-top: 5px;
}


/* ========================
   STEPS (how it works)
   ======================== */
.steps-list {
  max-width: 600px;
  margin: 0 auto;
}
.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.step-item:last-child {
  border-bottom: none;
}
.step-num {
    flex-shrink: 0;
    width: 40px;height: 40px;
    background: #111;
    color: #fff;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-content {}
.step-title {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.step-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/* ========================
   CTA CONTACT BLOCK
   ======================== */
.cta-contact-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .cta-contact-block {
    flex-direction: column;
    gap: 25px;
  }
}
.cta-contact__left {
  flex: 1;
}
.cta-contact__right {
  flex: 0 0 320px;
}
@media only screen and (max-width: 768px) {
  .cta-contact__right {
    flex: auto;
    width: 100%;
  }
}
.cta-contact-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #e5e4e1;
}


/* ========================
   MATERIALS SPLIT
   ======================== */
.materials-split {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .materials-split {
    flex-direction: column;
    gap: 20px;
  }
}
.materials-split__img {
    flex: 0 0 42%;
}
.materials-split__img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .materials-split__img img {
    height: 220px;
  }
}
.materials-split__text {
  flex: 1;
}
.materials-split__text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 13px;
}


/* ========================
   DELIVERY BANNER
   ======================== */
.delivery-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .delivery-banner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.delivery-banner__col {
    padding: 20px;
}
.delivery-banner__col svg {
    margin-bottom: 12px;
}
.delivery-banner__title {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.delivery-banner__col p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
