/* =========================================================
   RESPONSIVE.CSS
   RESPONSIVE SYSTEM

   Tablet
   Mobile
   Small mobile
========================================================= */

/* TABLET */

@media (max-width: 1120px) {

  .catalog-highlight {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .featured-catalog {
    min-height: 430px;
  }

  .catalog-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 920px) {

  .container {
    width: min(100% - 24px, 1280px);
  }

  .brand-strip {
    position: relative;
    top: auto;
  }

  .brand-strip.hide {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .brand-strip-inner {
    min-height: 78px;
  }

  .brand-logo-main {
    width: 190px;
  }

  .site-header {
    top: 0;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    min-height: 72px;
    padding: 0;
  }

  .menu-trigger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .sticky-logo {
    display: none !important;
  }

  .nav .social-list {
    display: none;
  }

  .nav-divider {
    height: 52px;
    margin-bottom: 28px;
  }

  .hero-slider {
    width: 100%;
  }

  .hero-slide,
  .hero-slide img {
    min-height: 290px;
    height: 290px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .collection-card {
    min-height: 410px;
    border-radius: 24px;
  }

  .collection-card img {
    object-fit: cover;
  }

  .collection-content {
    inset: auto 18px 18px 18px;
    gap: 12px;
  }

  .collection-name {
    font-size: 29px;
  }

  .catalog-highlight {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 12px;
    gap: 14px;
  }

  .featured-catalog {
    min-height: 420px;
    border-radius: 24px;
  }

  .featured-info {
    inset: auto 12px 12px 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .catalog-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .catalog-card {
    border-radius: 22px;
  }

  .catalog-card .media {
    aspect-ratio: 1 / .68;
  }

  .catalog-note {
    border-radius: 20px;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-grid {
    grid-template-columns: 1fr;
  }

  .offer-box {
    padding: 28px 18px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 28px;
  }

  .offer-images {
    grid-template-columns: .78fr 1.22fr;
    gap: 12px;
    align-items: center;
  }

  .offer-images img {
    border-radius: 22px;
  }

  .offer-images img:first-child {
    max-width: 150px;
    height: 220px;
  }

  .offer-images img:last-child {
    max-width: 100%;
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SMALL MOBILE */

@media (max-width: 640px) {

  .section {
    padding: 42px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .title-mark {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 8px rgba(255,107,107,.08);
  }

  .brand-strip-inner {
    min-height: 70px;
  }

  .brand-logo-main {
    width: 176px;
  }

  .nav {
    min-height: 68px;
  }

  .menu-trigger {
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }

  .nav-divider {
    height: 44px;
    margin-bottom: 24px;
  }

  .hero-slide,
  .hero-slide img {
    height: 275px;
    min-height: 275px;
  }

  .collection-card {
    min-height: 400px;
  }

  .collection-card .btn {
    min-height: 40px;
    padding: 9px 16px;
  }

  .featured-catalog {
    min-height: 390px;
  }

  .featured-info h3 {
    font-size: 28px;
  }

  .featured-info p {
    font-size: 13px;
  }

  .catalog-content h3 {
    font-size: 19px;
  }

  .catalog-content p {
    font-size: 13px;
  }

  .wide-banner {
    min-height: 210px;
    border-radius: 22px;
  }

  .offer-title {
    font-size: 30px;
  }

  .offer-text {
    font-size: 14px;
  }

  .offer-list li {
    font-size: 14px;
  }

  .cookie-banner {
    align-items: flex-start;
  }

  .instagram-toast {
    width: auto;
    left: 12px;
    right: 12px;
    bottom: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 980px) {

  .about-hero-card,
  .story-grid,
  .craft-box {
    grid-template-columns: 1fr;
  }

  .story-panel {
    position: relative;
    top: auto;
  }

  .about-stats {
    grid-template-columns: repeat(2,1fr);
  }

  .about-visual img:first-child {
    height: 300px;
    margin-top: 36px;
  }

  .about-visual img:last-child {
    height: 430px;
  }

  .about-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {

  .breadcrumb-wrap {
    padding-top: 18px;
  }

  .about-hero {
    padding: 22px 0 42px;
  }

  .about-hero-card {
    padding: 20px;
    border-radius: 26px;
    gap: 20px;
  }

  .about-hero h1 {
    font-size: 27px;

    line-height: 1.08;

    letter-spacing: -.04em;

    max-width: 100%;
  }

  .about-lead {
    font-size: 13.5px;

    line-height: 1.62;

    margin-top: 16px;
  }

  .about-hero-actions {
    gap: 9px;

    margin-top: 22px;
  }

  .about-hero-actions .btn {
    width: 100%;

    min-height: 43px;

    font-size: 12px;
  }

  .about-visual {
    grid-template-columns: .78fr 1.22fr;

    gap: 12px;
  }

  .about-visual img:first-child {
    height: 230px;

    margin-top: 28px;

    border-radius: 22px;
  }

  .about-visual img:last-child {
    height: 330px;

    border-radius: 22px;
  }

  .about-floating-card {
    left: 12px;
    right: 12px;
    bottom: 12px;

    width: auto;

    padding: 14px;

    border-radius: 20px;
  }

  .about-floating-card strong {
    font-size: 17px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 18px;
  }

  .about-stat {
    padding: 14px;

    border-radius: 18px;

    min-height: 98px;
  }

  .about-stat strong {
    font-size: 23px;
  }

  .about-stat span {
    font-size: 10.5px;

    line-height: 1.45;
  }

  .section-head {
    display: block;
  }

  .section-title {
    font-size: 31px;
  }

  .story-card {
    grid-template-columns: 1fr;

    padding: 18px;

    border-radius: 22px;
  }

  .craft-card {
    min-height: auto;

    padding: 22px;

    border-radius: 24px;
  }

  .about-cta {
    padding-bottom: 54px;
  }

  .about-cta-card {
    padding: 24px;

    border-radius: 26px;
  }
}