:root{
  --cream:#f6efe4;
  --ivory:#fffdf8;
  --soft:#eee2d2;
  --sand:#e8dccd;
  --ink:#1d1b17;
  --muted:#6b6256;
  --line:rgba(29,27,23,.12);
  --olive:#58583e;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, Arial, sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.5;
}

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

img{
  display:block;
  max-width:100%;
}

.nav{
  height:82px;
  padding:0 5vw;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  column-gap:0;
  align-items:center;
  background:rgba(246,239,228,.94);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(14px);
}

.nav-left,
.nav-right{
  display:flex;
  gap:0;
  align-items:center;
  min-width:0;
}

.nav-left{
  justify-content:flex-start;
}

.nav-right{
  justify-content:flex-end;
}

.nav-left a,
.nav-right a{
  position:relative;
  padding:7px 0;
  font-family:Inter, Arial, sans-serif;
  font-size:12px;
  letter-spacing:.22em;
  font-weight:500;
  text-transform:uppercase;
  color:var(--ink);
  opacity:.9;
  transition:opacity .24s ease;
}

.nav-left a::after,
.nav-right a::after{
  content:"";
  position:absolute;
  left:0;
  right:.22em;
  bottom:2px;
  height:1px;
  background:currentColor;
  opacity:.46;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .24s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a:focus-visible,
.nav-right a:focus-visible{
  opacity:1;
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a:focus-visible::after,
.nav-right a:focus-visible::after{
  transform:scaleX(1);
}

.nav .logo{
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.logo-wordmark{
  display:block;
  width:190px;
  height:46px;
  max-height:46px;
  object-fit:cover;
  object-position:center;
}

.logo-text{
  display:none;
}

.menu-toggle{
  display:none;
  position:absolute;
  left:5vw;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  align-items:center;
  justify-content:flex-start;
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.mobile-drawer{
  position:fixed;
  inset:0;
  z-index:40;
  pointer-events:none;
  visibility:hidden;
}

.drawer-overlay{
  position:absolute;
  inset:0;
  background:rgba(29,27,23,.26);
  opacity:0;
  transition:opacity .36s ease;
}

.drawer-panel{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:min(74vw,320px);
  background:var(--ivory);
  border-right:1px solid var(--line);
  padding:26px 28px 32px;
  transform:translateX(-100%);
  transition:transform .42s cubic-bezier(.22,.61,.36,1);
  box-shadow:18px 0 48px rgba(29,27,23,.12);
}

.drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:30px;
  padding-bottom:22px;
  border-bottom:1px solid transparent;
  transition:border-color .48s ease;
}

.drawer-brand{
  display:flex;
  align-items:center;
  line-height:1;
}

.drawer-wordmark{
  display:block;
  width:184px;
  height:38px;
  max-width:100%;
  max-height:38px;
  object-fit:cover;
  object-position:center;
}

.drawer-close{
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:13px;
  letter-spacing:.14em;
  cursor:pointer;
}

.drawer-links{
  display:grid;
  gap:15px;
}

.drawer-links a{
  font-family:Georgia, serif;
  font-size:23px;
  line-height:1.16;
  font-weight:400;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1);
}

.drawer-social{
  display:grid;
  gap:14px;
  margin-top:32px;
  padding-top:22px;
  border-top:1px solid transparent;
  transition:border-color .48s ease;
}

.drawer-social a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:Georgia, serif;
  color:var(--muted);
  font-size:18px;
  line-height:1.1;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1);
}

.drawer-social img{
  width:16px;
  height:16px;
  object-fit:contain;
  filter:grayscale(1) sepia(.14) saturate(.65) brightness(.48) contrast(1.28);
  opacity:.82;
}

body.drawer-open{
  overflow:hidden;
}

body.drawer-open .mobile-drawer{
  pointer-events:auto;
  visibility:visible;
}

body.drawer-open .drawer-overlay{
  opacity:1;
}

body.drawer-open .drawer-panel{
  transform:none;
}

body.drawer-open .drawer-top{
  border-bottom-color:var(--line);
  transition-delay:.1s;
}

body.drawer-open .drawer-links a,
body.drawer-open .drawer-social a{
  opacity:1;
  transform:none;
}

body.drawer-open .drawer-links a:nth-child(1){transition-delay:0ms;}
body.drawer-open .drawer-links a:nth-child(2){transition-delay:60ms;}
body.drawer-open .drawer-links a:nth-child(3){transition-delay:120ms;}
body.drawer-open .drawer-links a:nth-child(4){transition-delay:180ms;}
body.drawer-open .drawer-links a:nth-child(5){transition-delay:240ms;}
body.drawer-open .drawer-links a:nth-child(6){transition-delay:300ms;}
body.drawer-open .drawer-links a:nth-child(7){transition-delay:360ms;}

body.drawer-open .drawer-social{
  border-top-color:var(--line);
  transition-delay:.44s;
}

body.drawer-open .drawer-social a:nth-child(1){transition-delay:460ms;}
body.drawer-open .drawer-social a:nth-child(2){transition-delay:520ms;}

.btn{
  display:inline-flex;
  width:max-content;
  align-items:center;
  justify-content:center;
  background:var(--ink);
  color:var(--ivory);
  padding:15px 30px;
  border:1px solid var(--ink);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.btn.secondary{
  background:transparent;
  color:var(--ink);
}

.kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--olive);
  font-weight:700;
  margin-bottom:18px;
}

h1,h2,h3,h4{
  font-family:Georgia, serif;
  font-weight:400;
}

.product-page{
  min-height:100vh;
}

.product-hero{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
  gap:64px;
  align-items:start;
  padding:72px 5vw 92px;
  background:linear-gradient(90deg,#fffdf8 0%,#f6efe4 52%,#eadcca 100%);
}

.product-gallery{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:14px;
}

.product-gallery-main,
.product-gallery-small{
  background:var(--soft);
  overflow:hidden;
}

.product-gallery-main{
  height:720px;
}

.product-gallery-stack{
  display:grid;
  gap:14px;
}

.product-gallery-small{
  height:353px;
}

.product-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:1;
  transition:opacity .28s ease;
}

.product-info{
  position:sticky;
  top:118px;
  max-width:520px;
  padding-top:16px;
}

.product-info h1{
  font-size:clamp(46px,5vw,78px);
  line-height:1;
  margin-bottom:14px;
}

.tagline{
  font-family:Georgia, serif;
  font-size:22px;
  margin-bottom:28px;
}

.editorial-copy{
  color:var(--muted);
  font-size:16px;
  margin-bottom:32px;
}

.detail-block{
  border-top:1px solid var(--line);
  padding:24px 0;
}

.detail-block h2{
  font-size:22px;
  margin-bottom:14px;
}

.detail-list{
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}

.detail-list div::before{
  content:"— ";
  color:var(--ink);
}

.size-row,
.action-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.selected-color{
  margin-bottom:14px;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.size-pill{
  min-width:54px;
  padding:12px 16px;
  border:1px solid var(--line);
  background:rgba(255,253,248,.5);
  text-align:center;
  font-size:13px;
  letter-spacing:.08em;
}

.product-color-options{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.product-color-swatch{
  appearance:none;
  position:relative;
  display:block;
  width:32px;
  height:32px;
  padding:0;
  border:1px solid rgba(29,27,23,.2);
  border-radius:50%;
  background:var(--swatch-color, transparent);
  cursor:pointer;
  transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.product-color-swatch::after{
  content:"";
  position:absolute;
  inset:-5px;
  border:1px solid transparent;
  border-radius:50%;
  transition:border-color .22s ease;
}

.product-color-swatch:hover,
.product-color-swatch:focus-visible{
  border-color:rgba(29,27,23,.48);
}

.product-color-swatch:focus-visible{
  outline:0;
  box-shadow:0 0 0 3px rgba(29,27,23,.12);
}

.product-color-swatch.is-active{
  border-color:rgba(29,27,23,.72);
}

.product-color-swatch.is-active::after{
  border-color:rgba(29,27,23,.22);
}

.product-gallery.is-variant-fading img{
  opacity:.28;
}

.availability{
  margin-top:16px;
  color:var(--olive);
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.note{
  color:var(--muted);
  font-size:14px;
}

.page-hero{
  min-height:460px;
  padding:96px 5vw;
  display:grid;
  align-items:end;
  background:linear-gradient(90deg,#fffdf8 0%,#f6efe4 54%,#eadcca 100%);
  border-bottom:1px solid var(--line);
}

.page-hero-inner{
  max-width:900px;
}

.page-hero h1{
  font-size:clamp(48px,6vw,92px);
  line-height:.98;
  margin-bottom:22px;
}

.page-hero p{
  max-width:620px;
  color:var(--muted);
  font-size:18px;
}

.page-section{
  padding:88px 5vw;
  background:var(--ivory);
  border-bottom:1px solid var(--line);
}

.page-section.alt{
  background:#f8f0e6;
}

.section-heading{
  max-width:760px;
  margin-bottom:44px;
}

.section-heading h2{
  font-size:clamp(36px,4.8vw,64px);
  line-height:1.04;
  margin-bottom:16px;
}

.section-heading p{
  color:var(--muted);
  font-size:17px;
}

.collection-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:42px;
}

.catalog-section{
  padding:42px 5vw 78px;
}

.catalog-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px 26px;
  align-items:start;
}

.collection-card{
  display:grid;
  gap:22px;
}

.catalog-card{
  gap:14px;
}

.collection-card-image{
  min-height:620px;
  background:var(--soft);
  overflow:hidden;
}

.catalog-grid .collection-card-image{
  display:block;
  aspect-ratio:3/4;
  min-height:0;
  background:transparent;
  line-height:0;
}

.catalog-grid .collection-card-image img{
  display:block;
  object-fit:cover;
}

.collection-card-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.collection-card h2{
  font-size:clamp(32px,4vw,56px);
  line-height:1.02;
}

.catalog-card h2{
  font-size:clamp(22px,2.1vw,30px);
}

.collection-card p{
  color:var(--muted);
  max-width:560px;
}

.catalog-card p{
  max-width:34em;
  font-size:14px;
}

.collection-card .card-price{
  margin-top:10px;
  color:var(--ink);
  font-size:13px;
  letter-spacing:.08em;
}

.catalog-card .card-price{
  font-size:12px;
}

.meta-list{
  display:grid;
  gap:12px;
  color:var(--muted);
  font-size:14px;
}

.catalog-card .meta-list{
  gap:6px;
  font-size:12px;
}

.catalog-card .btn{
  padding:12px 20px;
  font-size:11px;
}

.meta-list div::before{
  content:"- ";
  color:var(--ink);
}

.split-section{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(360px,1.05fr);
  gap:64px;
  align-items:center;
}

.split-image{
  min-height:680px;
  background:var(--soft);
  overflow:hidden;
}

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

.text-stack{
  display:grid;
  gap:26px;
}

.text-stack h2{
  font-size:clamp(34px,4.6vw,62px);
  line-height:1.04;
}

.text-stack p{
  color:var(--muted);
  font-size:16px;
}

.value-grid,
.contact-grid,
.size-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.value-card,
.contact-card,
.size-card{
  border:1px solid var(--line);
  background:rgba(255,253,248,.64);
  padding:28px;
}

.value-card h3,
.contact-card h2,
.size-card h2{
  font-size:24px;
  margin-bottom:14px;
}

.value-card p,
.contact-card p,
.size-card p{
  color:var(--muted);
  font-size:15px;
}

.contact-card a{
  display:inline-flex;
  margin-top:18px;
  color:var(--ink);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.size-table{
  width:100%;
  border-collapse:collapse;
  border:1px solid var(--line);
  background:rgba(255,253,248,.72);
}

.section-action{
  margin-top:34px;
}

.size-table th,
.size-table td{
  border-bottom:1px solid var(--line);
  padding:18px;
  text-align:left;
  font-size:14px;
}

.size-table th{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.size-table td{
  color:var(--muted);
}

.product-story{
  padding:100px 5vw;
  background:var(--ivory);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.product-story-inner{
  max-width:880px;
  margin:0 auto;
  text-align:center;
}

.product-story h2{
  font-size:clamp(38px,4.8vw,66px);
  line-height:1.04;
  margin-bottom:22px;
}

.product-story p{
  color:var(--muted);
  font-size:17px;
}

.footer{
  background:var(--ivory);
  border-top:1px solid var(--line);
}

.footer-panel{
  padding:62px 5vw;
  border-bottom:1px solid var(--line);
  text-align:center;
}

.footer-section-title{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:34px;
}

.logo-row{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:34px 46px;
  max-width:980px;
  margin:0 auto;
}

.payment-icon,
.shipment-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:92px;
  min-height:38px;
}

.payment-icon img,
.shipment-icon img{
  display:block;
  max-width:124px;
  max-height:34px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(1) sepia(.14) saturate(.65) brightness(.66) contrast(1.22);
  opacity:.82;
}

.payment-icon.qris img{
  max-height:30px;
}

.footer-grid{
  padding:54px 5vw 48px;
  display:grid;
  grid-template-columns:minmax(230px,1fr) repeat(4,112px);
  gap:34px clamp(18px,2.2vw,34px);
  align-items:start;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}

.footer-grid > div:nth-child(2){
  order:2;
}

.footer-grid > div:nth-child(3){
  order:5;
}

.footer-grid > div:nth-child(4){
  order:3;
}

.footer-grid > div:nth-child(5){
  order:4;
}

.footer-brand{
  font-family:Georgia, serif;
  font-size:40px;
  letter-spacing:.18em;
  line-height:1;
  margin-bottom:10px;
}

.footer-grid h4{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:11px;
}

.footer-grid p,
.footer-grid a{
  color:var(--muted);
  font-size:14px;
}

.footer-grid a{
  display:block;
  margin-bottom:8px;
}

.footer-descriptor{
  margin-bottom:2px;
}

.footer-thesis{
  margin-bottom:0;
}

.footer-mobile-links{
  display:none;
}

.social-links{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:15px;
}

.social-link{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#f8f0e6;
  display:grid !important;
  place-items:center !important;
  margin:0 !important;
}

.social-link img{
  display:block;
  width:19px;
  height:19px;
  object-fit:contain;
  filter:grayscale(1) sepia(.14) saturate(.65) brightness(.48) contrast(1.28);
  opacity:.86;
}

.footer-bottom{
  padding:30px 5vw;
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:var(--muted);
  font-size:13px;
}

.legal-links{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--ink);
  display:grid;
  place-items:center;
  z-index:20;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}

.whatsapp img{
  width:26px;
  height:26px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.92;
}

.motion-reveal{
  opacity:0;
  transform:translateY(32px);
  transition:
    opacity 860ms cubic-bezier(.22,.61,.36,1) var(--reveal-delay,0ms),
    transform 860ms cubic-bezier(.22,.61,.36,1) var(--reveal-delay,0ms);
  will-change:opacity, transform;
}

.motion-reveal.motion-visible{
  opacity:1;
  transform:translateY(0);
}

@media(prefers-reduced-motion:reduce){
  .motion-reveal{
    opacity:1;
    transform:none;
    transition:none;
  }

  .drawer-top,
  .drawer-social,
  .drawer-links a,
  .drawer-social a{
    transition:none;
    transition-delay:0ms;
  }

  .drawer-top{
    border-bottom-color:var(--line);
  }

  .drawer-social{
    border-top-color:var(--line);
  }

  .drawer-links a,
  .drawer-social a{
    opacity:1;
    transform:none;
  }
}

@media(max-width:980px){
  .nav{
    grid-template-columns:1fr auto 1fr;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .nav-left{
    visibility:hidden;
  }

  .product-hero{
    grid-template-columns:1fr;
    gap:42px;
    padding-top:52px;
  }

  .product-info{
    position:static;
    max-width:none;
    padding-top:0;
  }

  .collection-grid,
  .split-section,
  .value-grid,
  .contact-grid,
  .size-grid{
    grid-template-columns:1fr;
  }

  .catalog-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:32px 22px;
  }

  .catalog-grid .collection-card-image{
    min-height:0;
  }

  .split-image{
    min-height:520px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-grid p{
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }

  .social-links{
    justify-content:center;
  }
}

@media(max-width:640px){
  .nav{
    height:70px;
    padding:0 22px;
    grid-template-columns:1fr;
    place-items:center;
  }

  .menu-toggle{
    left:22px;
  }

  .nav-left,
  .nav-right{
    display:none;
  }

  .nav .logo{
    line-height:1;
  }

  .logo-wordmark{
    display:block;
    width:160px;
    height:34px;
    max-width:160px;
    max-height:34px;
  }

  .logo-text{
    display:none;
  }

  .footer-grid{
    padding:48px 22px 22px;
    border-bottom:0;
  }

  .footer-grid > div:not(:first-child){
    display:none;
  }

  .footer-grid .social-links{
    display:none;
  }

  .footer-mobile-links{
    display:grid;
    gap:10px;
    margin-top:22px;
  }

  .footer-mobile-links a{
    margin:0;
    color:var(--muted);
    font-size:14px;
  }

  .footer-bottom{
    display:block;
    padding:0 22px 34px;
    text-align:center;
  }

  .footer-bottom .legal-links,
  .footer-bottom > div:last-child{
    display:none;
  }

  .product-hero{
    padding:34px 18px 62px;
  }

  .page-hero{
    min-height:390px;
    padding:72px 22px;
  }

  .page-section{
    padding:70px 22px;
  }

  .catalog-section{
    padding:34px 22px 70px;
  }

  .collection-card-image,
  .split-image{
    min-height:430px;
  }

  .catalog-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .catalog-grid .collection-card-image{
    aspect-ratio:4/5;
    min-height:0;
  }

  .value-card,
  .contact-card,
  .size-card{
    padding:24px;
  }

  .size-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }

  .size-table th,
  .size-table td{
    padding:14px 12px;
    font-size:13px;
  }

  .product-gallery{
    grid-template-columns:1fr;
    gap:10px;
  }

  .product-gallery-main{
    height:430px;
  }

  .product-gallery-stack{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .product-gallery-small{
    height:210px;
  }

  .product-info h1{
    font-size:42px;
  }

  .tagline{
    font-size:18px;
  }

  .action-row{
    display:grid;
    width:100%;
  }

  .action-row .btn{
    width:100%;
  }

  .product-story{
    padding:76px 22px;
  }

  .footer-panel,
  .footer-grid{
    padding-left:22px;
    padding-right:22px;
  }

  .logo-row{
    gap:28px 34px;
  }

  .payment-icon,
  .shipment-icon{
    min-width:96px;
  }

  .payment-icon img,
  .shipment-icon img{
    max-width:112px;
    max-height:30px;
  }

  .footer-bottom{
    display:block;
    padding:28px 22px;
    text-align:center;
  }

  .legal-links{
    justify-content:center;
    line-height:1.9;
  }
}
