@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metamorphous&display=swap');

/* other css file imports */
@import url("sections/header.css");
@import url("sections/hero.css");
@import url("sections/about.css");
@import url("sections/popular.css");
@import url("sections/trending.css");
@import url("sections/subscribe.css");
@import url("sections/footer.css");
@import url("contact.css");

/* CSS variables for reusablity across all files (including above imported) */
:root {
  --playfair-display: "Marcellus", serif;
  --plus-jakarta-sans: "Marcellus", serif;

  --primary-color: #b1454a;
  --secondary-color: #121212;

  --black-200: #020202;
  --black-300: #333333;
  --black-400: #1f1e31;
  --black-500: #555555;
  --gray-100: #888888;

  --color-white: #fff;
  --color-creamson: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  max-width: 1280px;
  margin: 0 auto;
  background-color: var(--color-creamson);
  padding-top: 74px; /* space for fixed header */
}

/* Home page: hero pulls itself up behind the transparent header */
body.home-page {
  padding-top: 0;
}

/* ===== STUDIO GALLERY ===== */
.studio-gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}

.studio-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.studio-item img {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.studio-item:hover img {
  transform: scale(1.03);
}

.studio-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8%;
  pointer-events: none;
}

.studio-item__overlay--left {
  justify-content: flex-start;
}

.studio-item__overlay h2 {
  position: relative;
  z-index: 1;
  font-family: var(--plus-jakarta-sans);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  padding: 16px 45px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.studio-item:hover .studio-item__overlay h2 {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .studio-item img {
    height: 40vh;
    min-height: 280px;
  }

  .studio-item__overlay {
    justify-content: flex-end;
    padding: 0 5%;
  }

  .studio-item__overlay h2 {
    font-size: 16px;
    padding: 14px 35px;
  }
}

/* ===== COLLECTIONS PAGE ===== */
.collections-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background-color: var(--color-creamson);
}

.collections-layout {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
  min-height: 400px;
}

/* Left - title */
.collections-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
}

.collections-title {
  font-family: var(--playfair-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Vertical divider */
.collections-vertical-line {
  width: 1px;
  background-color: #1a1a1a;
  opacity: 0.2;
  align-self: stretch;
}

/* Center - collection names (right of vertical line) */
.collections-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
}

.collections-arrow {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
  margin-left: -10px;
}

.collections-names {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection-link {
  font-family: var(--playfair-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.collection-link:hover {
  color: var(--primary-color);
}

.collection-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.collection-link:hover::after {
  width: 100%;
}

/* Right side - hover image */
.collections-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.collections-preview {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.collections-preview.visible {
  opacity: 1;
  transform: scale(1);
}

/* Collections page - tablet */
@media screen and (max-width: 1024px) {
  .collections-page {
    padding: 60px 30px;
  }

  .collections-layout {
    min-height: 300px;
  }

  .collections-left {
    padding-right: 30px;
  }

  .collections-center {
    padding-left: 30px;
  }

  .collections-right {
    min-height: 280px;
  }

  .collections-preview {
    max-height: 300px;
  }
}

/* Collections page - mobile */
@media screen and (max-width: 768px) {
  .collections-page {
    min-height: auto;
    padding: 50px 20px;
  }

  .collections-layout {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .collections-left {
    padding-right: 0;
    padding-bottom: 20px;
    justify-content: center;
  }

  .collections-title {
    font-size: 32px;
  }

  .collections-vertical-line {
    width: 80px;
    height: 1px;
    align-self: auto;
  }

  .collections-center {
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
  }

  .collections-arrow {
    width: 40px;
    margin-left: 0;
  }

  .collections-names {
    align-items: center;
  }

  .collection-link {
    font-size: 32px;
  }

  .collections-right {
    padding-top: 20px;
    min-height: 180px;
    width: 100%;
  }

  .collections-preview {
    max-height: 240px;
  }
}

/* Collections page - small mobile */
@media screen and (max-width: 480px) {
  .collections-page {
    padding: 40px 15px;
  }

  .collections-title {
    font-size: 26px;
  }

  .collection-link {
    font-size: 26px;
  }

  .collections-arrow {
    width: 32px;
  }

  .collections-preview {
    max-height: 200px;
  }
}

/* ===== COLLECTION HERO (title + arrow) ===== */
.collection-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 60px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.collection-hero.scrolled {
  opacity: 0;
  transform: translateY(-30px);
}

.collection-hero__title {
  font-family: var(--playfair-display);
  font-size: 80px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin: 0;
}

.collection-hero__arrow {
  width: 80px;
  height: auto;
  margin-top: 0px;
}

/* Collection hero - tablet */
@media screen and (max-width: 1024px) {
  .collection-hero {
    padding: 20px 20px 50px;
  }

  .collection-hero__title {
    font-size: 64px;
  }

  .collection-hero__arrow {
    width: 65px;
  }
}

/* Collection hero - mobile */
@media screen and (max-width: 768px) {
  .collection-hero {
    padding: 15px 20px 40px;
  }

  .collection-hero__title {
    font-size: 48px;
  }

  .collection-hero__arrow {
    width: 50px;
  }
}

/* Collection hero - small mobile */
@media screen and (max-width: 480px) {
  .collection-hero {
    padding: 50px 15px 30px;
  }

  .collection-hero__title {
    font-size: 36px;
  }

  .collection-hero__arrow {
    width: 40px;
  }
}

/* ===== PRODUCT INFO SECTION ===== */
.product-info {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 60px 40px;
  background-color: var(--color-creamson);
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.product-info__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding-right: 50px;
  min-height: 200px;
}

.product-info__left .product-info__icon {
  align-self: center;
  margin-bottom: 30px;
}

.product-info__left .product-info__icon img {
  width: 45px;
  height: auto;
}

.product-info__material {
  font-family: var(--playfair-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.product-info__code-wrapper {
  margin-top: 30px;
}

.product-info__divider {
  width: 1px;
  background-color: #1a1a1a;
  opacity: 0.3;
  align-self: stretch;
}

.product-info__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding-left: 50px;
  min-height: 200px;
}

.product-info__code-label {
  font-family: var(--plus-jakarta-sans);
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}

.product-info__code-number {
  font-family: var(--playfair-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: #1a1a1a;
  margin: 10px 0;
  letter-spacing: 0.05em;
}

.product-info__right .product-info__icon {
  margin-top: 20px;
}

.product-info__right .product-info__icon img {
  width: 40px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .product-info {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }
  
  .product-info__left {
    padding-right: 0;
    padding-bottom: 40px;
    align-items: center;
    text-align: center;
    min-height: auto;
  }
  
  .product-info__divider {
    width: 80%;
    height: 1px;
    align-self: center;
  }
  
  .product-info__right {
    padding-left: 0;
    padding-top: 40px;
    min-height: auto;
  }
}

/* ===== PRODUCT SPECIFICATIONS SECTION ===== */
.product-specs {
  display: flex;
  background-color: #f5f3f0;
  min-height: 600px;
}

.product-specs__image {
  flex: 0.4;
  position: relative;
  overflow: hidden;
}

.product-specs__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-specs__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
}

.product-specs__content {
  flex: 0.6;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

.specs-section {
  margin-bottom: 10px;
}

.specs-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.specs-section__icon {
  width: 20px;
  height: 20px;
}

.specs-section__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(180deg);
}

.specs-section__title {
  font-family: var(--playfair-display);
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid #1a1a1a;
}

.specs-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-section__item {
  font-family: var(--plus-jakarta-sans);
  font-size: 13px;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 2.2;
}

.specs-section__item span {
  color: #1a1a1a;
  font-weight: 500;
}

/* Responsive for Product Specs */
@media screen and (max-width: 1024px) {
  .product-specs {
    flex-direction: column;
    min-height: auto;
  }
  
  .product-specs__image {
    height: 350px;
  }
  
  .product-specs__content {
    padding: 50px 40px;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .product-specs__content {
    padding: 40px 25px;
    gap: 35px;
  }
  
  .specs-section__title {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  
  .specs-section__item {
    font-size: 12px;
    line-height: 2;
  }
}

@media screen and (max-width: 550px) {
  .product-specs__image {
    height: 280px;
  }
  
  .product-specs__content {
    padding: 30px 20px;
    gap: 30px;
  }
  
  .specs-section__title {
    font-size: 14px;
  }
  
  .specs-section__item {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}

/* ===== PRODUCT IMAGE SECTION ===== */
.product-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-creamson);
  padding: 0;
}

.product-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* Plus button */
.product-image__plus-btn {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgb(255 255 255);
  color: #000000;
  font-size: 28px;
  font-weight: 300;
  font-family: var(--plus-jakarta-sans);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.product-image__plus-btn:hover {
  background: rgba(0, 0, 0, 0.6);
 color: #ffffff;
  transform: scale(1.1);
}

.product-image__plus-btn.active {
  transform: rotate(45deg);
}

/* Description overlay */
.product-image__desc {
  position: absolute;
  right: 32px;
  bottom: 96px;
  width: 380px;
  max-height: 70%;
  overflow-y: auto;
  background: #fff;
  padding: 28px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 2;
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a transparent;
}

.product-image__desc::-webkit-scrollbar {
  width: 4px;
}

.product-image__desc::-webkit-scrollbar-track {
  background: transparent;
}

.product-image__desc::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 0;
}

.product-image__desc.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-image__desc p {
  font-family: var(--plus-jakarta-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .product-image img {
    height: 50vh;
  }

  .product-image__plus-btn {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .product-image__desc {
    right: 16px;
    bottom: 72px;
    width: calc(100% - 32px);
    padding: 20px 16px;
  }

  .product-image__desc p {
    font-size: 12px;
  }
}

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--secondary-color);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}


.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sushi__subtitle {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--plus-jakarta-sans);

  color: #b1454a !important;

  letter-spacing: -0.01em;
}

.sushi__title {
  font-size: 56px;
  font-weight: 600;
  font-family: var(--playfair-display);

  color: var(--secondary-color);

  margin-top: 16px;
}

.sushi__description {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--plus-jakarta-sans);
  line-height: 36px;
  letter-spacing: -0.01em;

  color: var(--secondary-color);
  opacity: 0.8;

  margin: 32px 0px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sushi__hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.sushi__hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* START: about us media queries */
@media screen and (max-width: 1024px) {
  .about-us {
    flex-direction: column;
  }

  .about-us__image {
    flex-direction: row;
  }

  .about-us__image-sushi3 {
    border-bottom: none;
    border-right: 8px solid var(--color-creamson);
  }

  .about-us__button {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .about-us__image {
    flex-direction: column;
  }

  .about-us__image-sushi3 {
    border-bottom: 8px solid var(--color-creamson);
    border-right: none;
  }

  .about-us__button {
    display: block;
    bottom: 33.33%;
  }
}

@media screen and (max-width: 550px) {
  .about-us__image-sushi2 img,
  .about-us__image-sushi3 img {
    width: 100%;
    height: 100%;

    object-fit: contain;
  }

  .about-us__image div {
    padding: 32px;
  }

  .about-us__button {
    bottom: 33.33%;
  }

  .about-us__content {
    padding: 0 32px;
  }
}
/* END: about us media queries */


/* START: header media querie */
@media screen and (max-width: 900px) {
  /* .header__nav {
    background: var(--primary-color);
  } */

  .header__menu {
    display: none;
  }

  .header__menu-mobile {
    display: flex;
  }

  .subscription {
    border: solid;
    margin: 3rem 3rem;
    padding: 32px;
    gap: .5rem;
    flex-direction: column;
    overflow: hidden;    
  }

  .subscription img{
    width: 20%;
    transform: rotate(90deg);
  }

  .subscriptionp {
    display: flex;
    flex-direction: column;
    font-size: 36px;
    font-family: var(--plus-jakarta-sans);
    align-items: center;
    font-weight: 300;
    line-height: 2rem;
    padding: 0px;
    gap: 2rem;
    margin-top: 0px;
    color: #000;
  }
}

@media screen and (max-width: 550px) {
  .header__logo {
    padding-left: 10PX;
  }
}
/* END: header media queries */

/* START: hero media queries */
@media screen and (max-width: 1060px) {
  .hero {
    flex-direction: column;
  }

  .hero-image img {
    width: 100%;

    /* transform: matrix(1, 0.05, 0, 1.25, 0, 0) !important; */
  }

  
}

@media screen and (max-width: 750px) {
  .hero-image h2 {
    font-size: 70px;
    line-height: 90px;
  }
}

@media screen and (max-width: 550px) {
  .hero-image h2 {
    font-size: 40px;
    line-height: 60px;
  }

  .hero-content-info {
    padding: 32px;
  }

  .hero-content-info h1 {
    font-size: 60px;
  }

  .hero-content-info p {
    margin: 32px 0;
  }

  .hero-content__buttons {
    margin: 41px 0;
  }

  .hero-content__customer img{
    width: 20%;
    margin-top: 1rem;
  }

  .hero-content__customer p {
    margin-top: .75rem;
    opacity: 0.5;
  }

}
/* END: hero media queries */

/* START: popular media queries */
@media screen and (max-width: 550px) {
  .popular-foods {
    padding: 64px 32px;
  }

  .popular-foods__card,
  .popular-foods__card.active-card {
    min-width: 100%;
  }
}
/* END: popular media queries */

/* START: subscribe media queries */
@media screen and (max-width: 550px) {
  .subscription {
    padding: 64px 32px;
  }

  .subscription h2 {
    font-size: 18px;
    line-height: 100px;
  }

  .subscriptionp {
    font-size: 16px;
  }

  .subscription__form {
    flex-direction: column;
    gap: 20px;

    min-width: 100%;
    border-radius: 20px;
    padding: 0;

    border: none;
  }

  .subscription__form input {
    min-height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
  }

  .subscription__form button {
    min-width: 100%;
  }
}
/* END: subscribe media queries */

/* START: trending media queries */
@media screen and (max-width: 1024px) {
  .trending-sushi {
    flex-direction: column;
  }

  .trending-drinks {
    display: none;
  }

  .trending__image {
    width: 100%;
    padding: 0;
    background-size: cover;
  }

  .trending__image img {
    width: 100vw;
    height: 100vw;
    object-fit: cover;
  }

  .trending__discover {
    display: none;
  }

  /* Show scroll label on mobile */
  .image-scroll-label {
    display: block;
  }

  .trending__arrow {
    display: none;
  }

  .trending__content {
    padding-bottom: 16px;
  }

  .trending__content .sushi__description {
    font-size: 14px;
    line-height: 1.2;
    margin: 8px 0;
  }
}

@media screen and (max-width: 550px) {
  .trending__content {
    padding: 32px;
    padding-bottom: 12px;
  }

  .trending__content .sushi__description {
    font-size: 12px;
    margin: 4px 0;
  }
}
/* END: trending media queries */


/* ===== COMING SOON POPUP MODAL ===== */
.coming-soon-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coming-soon-modal.active {
  display: flex;
  opacity: 1;
}

.coming-soon-modal__content {
  background-color: var(--color-creamson);
  padding: 50px 60px;
  border-radius: 0;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.coming-soon-modal.active .coming-soon-modal__content {
  transform: scale(1);
}

.coming-soon-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: 300;
  color: #1a1a1a;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.3s ease;
}

.coming-soon-modal__close:hover {
  color: var(--primary-color);
}

.coming-soon-modal__title {
  font-family: var(--playfair-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
}

.coming-soon-modal__divider {
  width: 60px;
  height: 1px;
  background-color: #1a1a1a;
  margin: 20px auto;
  opacity: 0.3;
}

.coming-soon-modal__message {
  font-family: var(--plus-jakarta-sans);
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.02em;
}

.coming-soon-modal__icon {
  margin-top: 25px;
}

.coming-soon-modal__icon img {
  width: 40px;
  height: auto;
  opacity: 0.6;
}

@media screen and (max-width: 550px) {
  .coming-soon-modal__content {
    padding: 40px 30px;
  }
  
  .coming-soon-modal__message {
    font-size: 14px;
  }
}
/* END: coming soon popup modal */

@media screen and (min-width: 1060px){
  .hero-content__customer h4 {
    margin-top: -0.6rem;
    margin-left: -2rem;
  }

  .hero-content__customer p {
    margin-top: -0.6rem;
    font-size: 18px;
  }
}

/* ===== STUDIO SHOWCASE SECTION ===== */
.studio-showcase {
  position: relative;
  /* break out of the max-width body container to reach full viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-showcase__bg {
  position: absolute;
  inset: 0;
}

.studio-showcase__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.studio-showcase__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.studio-showcase__line {
  position: absolute;
  left: 40px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 1;
}

.studio-showcase__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studio-showcase__label {
  font-family: var(--plus-jakarta-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.studio-showcase__names {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.studio-showcase__name {
  font-family: var(--playfair-display);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  transition: color 0.35s ease, opacity 0.35s ease;
  display: block;
}

.studio-showcase__name:hover {
  color: rgba(255, 255, 255, 0.38);
}

.studio-showcase__counter {
  position: absolute;
  right: 40px;
  bottom: 36px;
  font-family: var(--plus-jakarta-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .studio-showcase {
    height: 80vh;
  }

  .studio-showcase__line {
    left: 20px;
  }

  .studio-showcase__name {
    font-size: clamp(28px, 7vw, 52px);
  }

  .studio-showcase__counter {
    right: 20px;
    bottom: 24px;
  }
}

@media screen and (max-width: 480px) {
  .studio-showcase {
    height: 75vh;
  }

  .studio-showcase__name {
    font-size: clamp(22px, 7vw, 40px);
  }
}
/* END: studio showcase section */

/* ===== POEM SECTION ===== */
.poem-section {
  width: 100%;
  padding: 100px 40px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-creamson);
}


.poem-section__block {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
}

/* hairline rules above and below verse */
.poem-section__rule {
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  opacity: 0.12;
  margin: 26px 0;
}

.poem-section__verse {
  text-align: center;
}

.poem-section__verse p {
  font-family: var(--playfair-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 2.1;
  letter-spacing: 0.01em;
  margin: 0;
  opacity: 0.82;
  /* reserve full line height before text is typed so the section never reflows */
  min-height: 2.1em;
}

.poem-section__author {
  display: block;
  font-style: normal;
  font-family: var(--plus-jakarta-sans);
  font-size: 10px;
  color: var(--secondary-color);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 2px;
}

/* blinking cursor for typewriter effect */
.poem-cursor {
  display: inline-block;
  width: 1.5px;
  height: 0.85em;
  background-color: var(--secondary-color);
  vertical-align: text-bottom;
  margin-left: 1px;
  opacity: 0.7;
  animation: poem-blink 0.65s step-end infinite;
}

@keyframes poem-blink {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 0; }
}

@media screen and (max-width: 768px) {
  .poem-section {
    padding: 80px 30px 88px;
  }
}

@media screen and (max-width: 480px) {
  .poem-section {
    padding: 64px 24px 72px;
  }

  .poem-section__rule {
    margin: 20px 0;
  }
}
/* END: poem section */

/* ===== COLLECTIONS ACCORDION ===== */
.coll-accordion {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: calc(100vh - 74px);
  overflow: hidden;
}

.coll-accordion__panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: flex 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* desktop accordion: only fires when a real (non-soon) panel is hovered */
.coll-accordion:has(.coll-accordion__panel:not(.coll-accordion__panel--soon):not(.golandam-coming-soon):hover) .coll-accordion__panel {
  flex: 0.55;
}
.coll-accordion:has(.coll-accordion__panel:not(.coll-accordion__panel--soon):not(.golandam-coming-soon):hover) .coll-accordion__panel:not(.coll-accordion__panel--soon):not(.golandam-coming-soon):hover {
  flex: 1.8;
}

.coll-accordion__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* dark shade */
.coll-accordion__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: background 0.5s ease;
  pointer-events: none;
}

.coll-accordion__panel:hover .coll-accordion__shade {
  background: rgba(0, 0, 0, 0.22);
}

/* "Dive In" label — shown on hover for clickable panels only */
.coll-accordion__panel:not(.coll-accordion__panel--soon)::after {
  content: 'Dive In';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--playfair-display);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}

.coll-accordion__panel:not(.coll-accordion__panel--soon):hover::after {
  opacity: 0.55;
}

/* info block at bottom-left */
.coll-accordion__info {
  position: absolute;
  bottom: 44px;
  left: 40px;
  z-index: 1;
}

.coll-accordion__num {
  display: block;
  font-family: var(--plus-jakarta-sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.coll-accordion__name {
  font-family: var(--playfair-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.coll-accordion__tag {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--plus-jakarta-sans);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* thin divider between panels */
.coll-accordion__panel + .coll-accordion__panel {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* coming-soon panels — blurred, dark, not clickable */
.coll-accordion__panel--soon {
  cursor: default;
}

.coll-accordion__panel--soon img {
  filter: blur(5px);
  transform: scale(1.04);
}

.coll-accordion__panel--soon .coll-accordion__shade {
  background: rgba(0, 0, 0, 0.65);
}

/* also blur golandam (coming soon jewelry) */
.coll-accordion__panel.golandam-coming-soon img {
  filter: blur(5px);
  transform: scale(1.04);
}

.coll-accordion__panel.golandam-coming-soon .coll-accordion__shade {
  background: rgba(0, 0, 0, 0.65);
}

.coll-accordion__panel--soon .coll-accordion__name {
  font-size: clamp(20px, 2.5vw, 34px);
  opacity: 0.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--plus-jakarta-sans);
  font-weight: 300;
}

/* ===== RESPONSIVE — mobile: fixed widths, no accordion ===== */
@media screen and (max-width: 768px) {
  .coll-accordion {
    flex-direction: column;
    height: auto;
  }

  /* cancel desktop hover accordion */
  .coll-accordion:hover .coll-accordion__panel,
  .coll-accordion:hover .coll-accordion__panel:hover {
    flex: none;
  }

  .coll-accordion__panel {
    height: 50vh;
    flex: none !important;
  }

  /* full-width white divider between stacked panels */
  .coll-accordion__panel + .coll-accordion__panel {
    border-left: none;
    border-top: 2px solid #fff;
  }

  .coll-accordion__name {
    font-size: clamp(28px, 8vw, 48px);
    white-space: normal;
  }

  .coll-accordion__info {
    bottom: 28px;
    left: 24px;
  }

  /* hide Dive In on touch devices */
  .coll-accordion__panel:not(.coll-accordion__panel--soon)::after {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .coll-accordion__panel {
    height: 45vh;
  }

  .coll-accordion__info {
    bottom: 22px;
    left: 20px;
  }
}
/* END: collections accordion */

/* ===== MOBILE SWIPE HINT ===== */
.swipe-hint {
  display: none; /* hidden on desktop */
}

@media screen and (max-width: 768px) {
  .swipe-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: fixed;
    bottom: 28px;
    right: 20px;
    z-index: 20;
    pointer-events: none;
  }

  .swipe-hint__text {
    font-family: var(--plus-jakarta-sans);
    font-size: 9px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .swipe-hint__arrow {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.45);
    position: relative;
    animation: swipe-bounce 1.6s ease-in-out infinite;
  }

  /* arrowhead */
  .swipe-hint__arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.45);
  }

  @keyframes swipe-bounce {
    0%, 100% { transform: translateY(0);   opacity: 0.45; }
    50%       { transform: translateY(6px); opacity: 0.9;  }
  }

  .swipe-hint--hidden {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
}
/* END: mobile swipe hint */