:root {
  --bg: #fffaf2;
  --ink: #1b1712;
  --muted: #6f6255;
  --gold: #d9aa32;
  --gold-soft: #f7e7b1;
  --sand: #f4eadc;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(60, 43, 12, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgb(255 250 242 / 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgb(217 170 50 / 0.18);
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
nav a:hover {
  color: var(--gold);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  grid-template-rows: auto auto auto;
  align-items: center;
  padding: clamp(28px, 6vw, 80px) clamp(20px, 5vw, 70px);
}
.hero__content--top {
  grid-column: 1;
  grid-row: 1;
}
.hero__slider {
  grid-column: 2;
  grid-row: 1 / -1;
}
.hero__content--bottom {
  grid-column: 1;
  grid-row: 3;
}
.hero__image img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__content {
  max-width: 620px;
}
.hero__content--bottom {
  max-width: 620px;
}
.button--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  padding: 0;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button--icon:hover {
  transform: translateY(-2px);
}
.button--icon img {
  max-width: inherit;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.lead {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 34px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 45px rgb(27 23 18 / 0.18);
}
.button--ghost {
  border: 1px solid rgb(27 23 18 / 0.2);
  background: rgb(255 255 255 / 0.45);
}
.section {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 70px);
}
.story,
.popup {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}
.copy p,
.contact p,
.vibe p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.vibe {
  margin: 0 clamp(20px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.vibe img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.vibe div {
  padding: clamp(28px, 5vw, 70px);
}
.vibe p {
  color: rgb(255 255 255 / 0.72);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards article {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 14px 50px rgb(60 43 12 / 0.07);
  border: 1px solid rgb(217 170 50 / 0.18);
}
.cards span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}
.cards p {
  color: var(--muted);
  line-height: 1.6;
}
.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery figure {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
  min-height: 420px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.86);
  font-weight: 800;
}
.contact {
  margin: clamp(32px, 6vw, 80px) clamp(20px, 5vw, 70px);
  padding: clamp(34px, 6vw, 80px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border: 1px solid rgb(217 170 50 / 0.25);
}
.contact-card {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: start;
}
.small {
  font-size: 14px !important;
  color: var(--muted);
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 20px 46px;
  color: var(--muted);
  font-size: 14px;
}
footer img {
  width: 34px;
  height: 34px;
}
@media (max-width: 900px) {
  .hero,
  .story,
  .popup,
  .contact,
  .vibe {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: rgb(255 250 242 / 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgb(217 170 50 / 0.18);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9;
  }
  nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgb(217 170 50 / 0.1);
  }
  .gallery figure {
    min-height: 360px;
  }
}
@media (max-width: 520px) {
  .site-header {
    padding: 12px 18px;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .actions {
    width: 100%;
    flex-wrap: nowrap;
  }
  .button {
    width: 100%;
  }
  .button--icon {
    width: 84px;
  }
  h1 {
    font-size: 44px;
    margin-bottom: 0;
  }
}
.contact {
  margin: clamp(32px, 6vw, 80px) clamp(20px, 5vw, 70px);
  padding: clamp(40px, 7vw, 90px) clamp(30px, 6vw, 80px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border: 1px solid rgb(217 170 50 / 0.25);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact__info {
  max-width: 480px;
}
.contact__info .eyebrow {
  margin-bottom: 16px;
}
.contact__info h2 {
  margin-bottom: 18px;
}
.contact__info p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
}
.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 20px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 14px 50px rgb(60 43 12 / 0.08);
  border: 1px solid rgb(217 170 50 / 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}
.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgb(60 43 12 / 0.14);
}
.contact__card-qr {
  width: 180px;
  height: 220px;
  border-radius: 14px;
  object-fit: contain;
}
.contact__card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.contact__card-icon {
  width: 32px;
  height: auto;
  object-fit: contain;
}
.contact__card-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.contact__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-top: 4px;
}
.contact__card-btn:hover {
  transform: translateY(-2px);
}
.contact__card-btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgb(37 211 102 / 0.25);
}
.contact__card-btn--ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888
  );
  color: #fff;
  box-shadow: 0 10px 30px rgb(220 39 67 / 0.25);
}
@media (max-width: 900px) {
  .hero,
  .story,
  .popup,
  .contact,
  .vibe {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    grid-template-rows: auto auto auto;
  }
  .hero__content--top,
  .hero__slider,
  .hero__content--bottom {
    grid-column: 1;
    grid-row: auto;
  }
  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: rgb(255 250 242 / 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgb(217 170 50 / 0.18);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9;
  }
  nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgb(217 170 50 / 0.1);
  }
  .gallery figure {
    min-height: 360px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 780px) {
  .contact__cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  .site-header {
    padding: 12px 18px;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .actions {
    width: 100%;
    flex-wrap: nowrap;
  }
  .button {
    width: 100%;
  }
  .button--icon {
    width: 84px;
  }
  h1 {
    font-size: 44px;
    margin-bottom: 0;
  }
  .contact__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .contact__card {
    padding: 32px 40px 28px;
  }
  .contact__card-qr {
    width: 180px;
    height: 220px;
  }
}
.hero--slider {
  position: relative;
  overflow: hidden;
}
.hero__slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #f3e7dc;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1800ms ease-in-out;
  will-change: opacity;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: none;
  will-change: transform;
}
.hero__slide.is-active,
.hero__slide.is-leaving {
  opacity: 1;
  z-index: 1;
}
.hero__slide:first-child {
  opacity: 1;
  z-index: 1;
}
.hero__slide.is-active img,
.hero__slide.is-leaving img {
  transform: scale(1.085);
}
.hero__slider.is-loaded .hero__slide img {
  transition: transform 8200ms linear;
}
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
      90deg,
      rgb(0 0 0 / 0.42),
      rgb(0 0 0 / 0.1) 48%,
      rgb(0 0 0 / 0.04)
    ),
    linear-gradient(0deg, rgb(0 0 0 / 0.22), #fff0 45%);
  pointer-events: none;
}
.hero--slider .hero__content--top,
.hero--slider .hero__content--bottom {
  position: relative;
  z-index: 3;
}
@media (max-width: 780px) {
  .hero__slider {
    min-height: 520px;
  }
}

/* ===== Lookbook Carousel — 3-up, slide 1, infinite loop, swipe ===== */
.carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.carousel__track {
  display: flex;
  gap: 10px;
  padding: 0 5px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 calc((100% - 20px) / 3);
  margin: 0 0 24px 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.carousel__slide figcaption {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.9);
  font-weight: 800;
  font-size: 13px;
  z-index: 1;
  white-space: nowrap;
}
.carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgb(60 43 12 / 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.carousel__btn:hover {
  transform: scale(1.1);
  background: var(--gold-soft);
}
@media (max-width: 780px) {
  .carousel__slide {
    flex: 0 0 100%;
  }
  .carousel__slide img {
    height: 480px;
  }
  .carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
   .hero {
    gap: clamp(28px, 6vw, 90px);
  }
}
