/* ===== Korea Gown Boutique  ===== */
.editorial{
  background: #fff;
  padding: 70px 0 84px;
}

.editorial__wrap{
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

/* Titles */
.editorial__title,
.editorial__subtitle{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.editorial__title{
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
}

.editorial__subtitle{
  margin: 46px 0 12px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
}

/* Body text */
.editorial__body{
  color: rgba(0,0,0,0.62);
  font-size: 15px;
  line-height: 1.9;
}

.editorial__body p{
  margin: 0 0 16px;
}

.editorial__lead{
  margin-top: 18px;
  color: rgba(0,0,0,0.55);
}

/* Image */
.editorial__figure{
  margin: 32px 0 0;
  padding: 0;
}

.editorial__figure img{
  width: 100%;
  height: auto;
  display: block;
  background: #eee;
}

/* List */
.editorial__list{
  margin-top: 18px;
}

.editorial__item{
  margin: 0 0 18px;
}

.editorial__itemTitle{
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  margin-bottom: 2px;
}

.editorial__itemText{
  color: rgba(0,0,0,0.55);
}

/* Mobile spacing */
@media (max-width: 720px){
  .editorial{
    padding: 56px 0 68px;
  }
  .editorial__wrap{
    width: min(980px, calc(100% - 32px));
  }
  .editorial__figure{
    margin-top: 24px;
  }
  .editorial__subtitle{
    margin-top: 34px;
  }
}

/* =========================
   Gown Boutiques Segment
   ========================= */

.gown-boutiques{
  background: #fff;
}

/* Big banner image (optional) */
.gown-boutiques__banner{
  width: 100%;
  height: clamp(240px, 40vw, 420px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content width */
.gown-boutiques__wrap{
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

/* Top row: title+desc (left) + featured tile (right) */
.gown-boutiques__top{
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.gown-boutiques__title{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
}

.gown-boutiques__desc{
  margin: 14px 0 0;
  color: rgba(0,0,0,0.55);
  font-size: 14px;
  line-height: 1.9;
  max-width: 520px;
}

/* Featured tile */
.gown-feature{
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16 / 9;
}

.gown-feature img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.gown-feature::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.14);
  pointer-events:none;
}

.gown-feature__label{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  pointer-events: none;
}

.gown-feature:hover img{
  transform: scale(1.06);
}

/* Grid of boutiques */
.gown-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gown-card{
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 3 / 2;
}

.gown-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.gown-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.14);
  pointer-events:none;
  transition: opacity .25s ease;
}

.gown-card__label{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  pointer-events: none;
}

.gown-card:hover img{
  transform: scale(1.06);
}
.gown-card:hover::after{
  opacity: 0.22;
}

/* Responsive */
@media (max-width: 980px){
  .gown-boutiques__top{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gown-boutiques__desc{
    max-width: none;
  }
  .gown-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .gown-boutiques__wrap{
    width: min(1100px, calc(100% - 32px));
    padding: 44px 0 60px;
  }
  .gown-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================
   Korean Gown Fitting (zigzag)
   Mobile: image on top, text below
   ========================= */

.fitting{
  background: #fff;
  padding-bottom: 80px;
}

.fitting__wrap{
 width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.fitting__title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
}

.fitting__intro{
  margin: 0 0 14px;
  color: rgba(0,0,0,0.60);
  font-size: 14px;
  line-height: 1.9;
  max-width: 920px;
}

.fitting__lead{
  margin: 0 0 24px;
  color: rgba(0,0,0,0.50);
  font-size: 14px;
  line-height: 1.8;
}

/* Desktop grid: 2 columns, alternating image/text */
.fitting__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
}

/* Cells */
.fitting__cell{
  padding: 34px 34px;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}

.fitting__text{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fitting__stepTitle{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: rgba(0,0,0,0.70);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.25;
}

.fitting__stepText{
  margin: 0;
  color: rgba(0,0,0,0.55);
  font-size: 14px;
  line-height: 1.9;
  max-width: 420px;
}

/* Image cells */
.fitting__media{
  padding: 0; /* so the image touches edges like your mock */
  background: #eee;
}

.fitting__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 260px;
}

/* ===== Mobile: image on top, text below ===== */
@media (max-width: 900px){
  .fitting__wrap{
    width: min(1100px, calc(100% - 32px));
  }

  .fitting__grid{
    grid-template-columns: 1fr;
    border-left: none;
  }

  .fitting__cell{
    border-right: none;
    padding: 22px 18px;
  }

  /* Make media come before text in each pair */
  .fitting__grid > .fitting__cell:nth-child(4n + 1){ order: 2; } /* text (row1) goes after image */
  .fitting__grid > .fitting__cell:nth-child(4n + 2){ order: 1; } /* image (row1) first */
  .fitting__grid > .fitting__cell:nth-child(4n + 3){ order: 4; } /* image (row2) first */
  .fitting__grid > .fitting__cell:nth-child(4n + 4){ order: 3; } /* text (row2) after image */

  /* Since we used a repeating pattern, also keep text width natural */
  .fitting__stepText{ max-width: none; }

  .fitting__media{
    padding: 0;
  }

  .fitting__media img{
    min-height: 220px;
  }
}

/* Slightly tighter on small phones */
@media (max-width: 420px){
  .fitting__cell{
    padding: 18px 14px;
  }
}


/* =========================
   Popular Gown Styles (editorial)
   ========================= */

.gown-styles{
  background: #fff;
}

/* Top banner */
.gown-styles__hero img{
  width: 100%;
  height: auto;
  display: block;
}

/* Content container */
.gown-styles__wrap{
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 70px;
}

.gown-styles__title{
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
}

.gown-styles__intro{
  color: rgba(0,0,0,0.60);
  font-size: 14px;
  line-height: 1.9;
}

.gown-styles__intro p{
  margin: 0 0 14px;
}

/* Each style section */
.style-block{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.style-block__title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: rgba(0,0,0,0.72);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
}

.style-block__desc{
  margin: 0 0 18px;
  color: rgba(0,0,0,0.55);
  font-size: 14px;
  line-height: 1.9;
  max-width: 820px;
}

/* Mosaic base */
.mosaic{
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.mosaic__item{
  margin: 0;
  background: #eee;
  overflow: hidden;
}

.mosaic__item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---- Mosaic A: 2 small stacked (left) + 1 tall (right) ---- */
.mosaic--a{
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px; /* controls visual height */
}

.mosaic__item--a1{ grid-column: 1; grid-row: 1; }
.mosaic__item--a2{ grid-column: 1; grid-row: 2; }
.mosaic__item--a3{ grid-column: 2; grid-row: 1 / span 2; }

/* ---- Mosaic B: 1 big (left) + 2 stacked (right) ---- */
.mosaic--b{
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px;
}

.mosaic__item--b1{ grid-column: 1; grid-row: 1 / span 2; }
.mosaic__item--b2{ grid-column: 2; grid-row: 1; }
.mosaic__item--b3{ grid-column: 2; grid-row: 2; }

/* Responsive */
@media (max-width: 720px){
  .gown-styles__wrap{
    width: min(1000px, calc(100% - 32px));
    padding: 44px 0 60px;
  }

  .mosaic{
    gap: 12px;
  }

  /* On mobile, stack images naturally */
  .mosaic--a,
  .mosaic--b{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mosaic__item--a1,
  .mosaic__item--a2,
  .mosaic__item--a3,
  .mosaic__item--b1,
  .mosaic__item--b2,
  .mosaic__item--b3{
    grid-column: auto;
    grid-row: auto;
  }

  .mosaic__item{
    aspect-ratio: 4 / 3; /* consistent mobile tiles */
  }
}

/* =========================
   Gown Preparation Section
   ========================= */

.gown-prep{
  background: #f8f8f6;
  padding-top: 80px;
}

/* Container */
.gown-prep__wrap{
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 60px;
}

/* Title */
.gown-prep__title{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Intro */
.gown-prep__intro{
  color: rgba(0,0,0,0.60);
  font-size: 15px;
  line-height: 1.9;
  max-width: 820px;
  margin-bottom: 36px;
}

/* List items */
.gown-prep__list{
  display: grid;
  gap: 28px;
}

.gown-prep__item h4{
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,0.80);
  margin-bottom: 6px;
}

.gown-prep__item p{
  font-size: 14px;
  line-height: 1.9;
  color: rgba(0,0,0,0.60);
  max-width: 820px;
}

/* Full-width image */
.gown-prep__image{
  width: 100%;
  margin-top: 40px;
}

.gown-prep__image img{
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 720px){

  .gown-prep{
    padding-top: 60px;
  }

  .gown-prep__wrap{
    width: calc(100% - 32px);
    padding-bottom: 40px;
  }

  .gown-prep__intro{
    font-size: 14px;
  }

  .gown-prep__item h4{
    font-size: 15px;
  }

  .gown-prep__item p{
    font-size: 13px;
  }

  .gown-prep__image{
    margin-top: 30px;
  }
}

/* =========================
   Love Story / Shoot Types
   ========================= */

.love-story{
  background: #fff;
  padding: 70px 0 78px;
}

.love-story__wrap{
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
}

.love-story__title{
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.25;
}

.love-story__subtitle{
  margin: 0 0 22px;
  color: rgba(0,0,0,0.55);
  font-size: 14px;
  line-height: 1.9;
  max-width: 860px;
}

/* Images */
.love-story__hero,
.love-story__image{
  margin: 20px 0 0;
}

.love-story__hero img,
.love-story__image img{
  width: 100%;
  height: auto;
  display: block;
  background: #eee;
}

/* Blocks */
.shoot-block{
  padding: 34px 0 18px;
}

.shoot-block__title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: rgba(0,0,0,0.72);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
}

.shoot-block__desc{
  margin: 0;
  color: rgba(0,0,0,0.55);
  font-size: 14px;
  line-height: 1.9;
  max-width: 900px;
}

/* Notes */
.shoot-block__note{
  margin-top: 14px;
  color: rgba(0,0,0,0.52);
  font-size: 13px;
  line-height: 1.8;
}

.shoot-block__noteTitle{
  font-style: italic;
  margin-bottom: 6px;
  color: rgba(0,0,0,0.50);
}

/* CTA button */
.shoot-block__cta{
  margin-top: 22px;
  text-align: center;
}

.shoot-btn{
  display: inline-block;
  padding: 14px 30px;
  background: #405530;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.10em;
  font-size: 11px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: transform .15s ease, opacity .15s ease;
}

.shoot-btn:hover{
  transform: translateY(-1px);
  opacity: 0.92;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 720px){
  .love-story{
    padding: 56px 0 64px;
  }

  .love-story__wrap{
    width: calc(100% - 32px);
  }

  .shoot-block{
    padding: 26px 0 14px;
  }

  .shoot-btn{
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }
}
