@font-face {
  font-family: "Recline";
  src: url("fonts/Recline-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Vera Humana";
  src: url("fonts/Verahb__.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vera Humana";
  src: url("fonts/Verahbi_.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --green: #207050;
  --green-dark: #155a3f;
  --peach: #f3b5a2;
  --peach-text: #f1b39e;
  --brown: #532719;
  --cream: #f8ede4;
  --header-h: clamp(84px, 12vw, 156px);
  --page-x: clamp(22px, 7vw, 102px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--green);
  color: var(--cream);
  font-family: "Vera Humana", Georgia, serif;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 42px);
  height: var(--header-h);
  padding: 0 var(--page-x);
  pointer-events: none;
}

.brand-mark {
  display: block;
  width: 165px;
  pointer-events: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.3vw, 52px);
  color: #fff7ee;
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(16px, 1.45vw, 25px);
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: auto;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--peach);
  transform: translateY(-1px);
}
.site-nav a:hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--peach);
}
.site-nav a[aria-current="page"]::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 181, 162, 0.9);
  padding: 10px;
  pointer-events: auto;
}
.menu-toggle span {
  display: block;
  height: 3px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--green);
}

.page-panel {
  min-height: 100vh;
  min-height: 100svh;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: var(--green);
  overflow: hidden;
}
.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 245, 216, 0.2), rgba(32, 112, 80, 0) 62%);
  content: "";
  pointer-events: none;
}
.home-artboard {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #207050;
}
.hero-copy {
  position: absolute;
  left: var(--page-x);
bottom: 40px; 
  z-index: 2;
  margin: 0;
  max-width: 640px;
}
.hero h1 {
  margin: 0;
  color: var(--cream);
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-logo {
  display: none;
}

.content-page {
  padding: clamp(86px, 9vw, 136px) var(--page-x) clamp(54px, 7vw, 84px);
}

.page-title {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 3.8vw, 58px);
  min-height: 78px;
  margin-bottom: clamp(42px, 5.8vw, 78px);
}
.page-title h1 {
  margin: 0;
  color: var(--peach-text);
  font-family: "Vera Humana", Georgia, serif;
  font-size: clamp(56px, 7vw, 96px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
}
.page-title p {
  margin: 0;
  color: var(--peach-text);
  font-family: "Recline", Georgia, serif;
  font-size: clamp(21px, 2vw, 30px);
  font-style: italic;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(360px, 1fr);
  min-height: min(72vh, 720px);
  border-radius: 44px;
  overflow: hidden;
  background: var(--peach);
}
.profile-photo {
  min-height: 560px;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
}
.profile-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vw, 46px);
  padding: clamp(42px, 5.6vw, 74px) clamp(36px, 5.2vw, 72px);
  color: var(--brown);
  font-family: "Recline", Georgia, serif;
  font-size: clamp(22px, 2.05vw, 31px);
  line-height: 1.15;
}
.profile-text p {
  margin: 0;
}

.product-page {
  padding-inline: 0;
  padding-top: clamp(76px, 7.4vw, 104px);
  overflow: hidden;
}
.product-title {
  padding: 0 var(--page-x);
  margin-bottom: clamp(42px, 5.2vw, 72px);
}

/* ===== PRODUCT GRID (original) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(330px, 35vw, 360px));
  gap: clamp(26px, 2.7vw, 42px);
  width: min(1600px, calc(100vw + 160px));
  margin-left: clamp(-105px, -6.5vw, -72px);
  padding-right: 0;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 0 34px 34px 0;
  background: var(--peach);
  color: var(--brown);
}
.product-card h2 {
  position: relative;
  z-index: 2;
  margin: clamp(38px, 4vw, 54px) clamp(28px, 5vw, 74px) 0;
  font-family: "Vera Humana", Georgia, serif;
  font-size: clamp(37px, 4.5vw, 64px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
}
.product-card img {
  position: absolute;
  z-index: 1;
  object-fit: contain;
}

.product-backpack img {
  left: 18%;
  bottom: -6%;
  width: 62%;
}
.product-backpack {
  grid-column: 1 / 5;
  grid-row: 1;
}
.product-accessories {
  grid-column: 5 / 11;
  grid-row: 1;
  border-radius: 34px;
}
.product-accessories img {
  right: 14%;
  bottom: 7%;
  width: 52%;
  height: auto;
  object-fit: contain;
}
.product-shoes {
  grid-column: 11 / 15;
  grid-row: 1;
  border-radius: 34px 0 0 34px;
}
.product-shoes h2 {
  text-align: center;
}
.product-shoes img {
  left: 15%;
  right: 0;
  bottom: 12%;
  width: 74%;
}
.product-slip,
.product-tote,
.product-hat,
.product-clutch {
  border-radius: 34px;
}
.product-slip {
  grid-column: 1 / 4;
  grid-row: 2;
  margin-left: 0;
}
.product-slip img {
  left: -10%;
  bottom: -3%;
  width: 104%;
}
.product-tote {
  grid-column: 4 / 8;
  grid-row: 2;
}
.product-tote img {
  left: 7%;
  right: 7%;
  bottom: 5%;
  width: 88%;
}
.product-hat {
  grid-column: 8 / 12;
  grid-row: 2;
}
.product-hat img {
  left: 22%;
  bottom: -11%;
  width: 60%;
}
.product-clutch {
  grid-column: 12 / 15;
  grid-row: 2;
  border-radius: 34px 0 0 34px;
}
.product-clutch h2 {
  text-align: center;
}
.product-clutch img {
  left: 31%;
  bottom: -8%;
  width: 45%;
}

.page-contact {
  position: relative;
  overflow-x: hidden;
}
.page-contact::before {
  content: "";
  position: absolute;
  top: -18%;
  left: -18%;
  width: 62vw;
  height: 62vw;
  max-width: 920px;
  max-height: 920px;
  background: radial-gradient(circle, rgba(255, 247, 238, 0.4) 0%, rgba(255, 247, 238, 0.14) 38%, rgba(255, 247, 238, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.page-contact .site-header {
  position: relative;
  z-index: 2;
}
.page-contact .content-page {
  position: relative;
  z-index: 1;
}
.page-contact .copyright {
  bottom: 14px;
}

.contact-page {
  position: relative;
  padding-bottom: 42px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}
.phone-visual {
  width: min(700px, 100%);
  margin-left: max(-70px, -4vw);
  transform: rotate(-3deg) scale(1.5);
}
.contact-right {
  display: flex;
  flex-direction: column;
}
.contact-right .page-title {
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 1vw, 14px);
  min-height: 0;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.contact-list {
  display: grid;
  gap: clamp(30px, 4.4vw, 54px);
  padding-top: clamp(12px, 3vw, 34px);
}
.contact-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: clamp(160px, 19vw, 214px);
  border-radius: 34px;
  background: var(--peach);
  color: var(--green);
  text-align: center;
}
.contact-card img {
  width: clamp(58px, 7vw, 96px);
  height: clamp(48px, 6vw, 80px);
  object-fit: contain;
  margin-bottom: 2px;
}
.contact-card h2 {
  margin: 0 0 8px;
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
}
.contact-card a,
.contact-card p {
  color: var(--green);
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(20px, 2.3vw, 31px);
  line-height: 1.1;
  text-decoration: none;
  margin: 0;
}

.copyright {
  position: absolute;
  right: clamp(48px, 12vw, 228px);
  bottom: clamp(26px, 3vw, 42px);
  margin: 0;
  color: var(--peach-text);
  font-family: "Recline", Georgia, serif;
  font-size: clamp(18px, 1.8vw, 27px);
  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ===== TAMBAHAN UNTUK HALAMAN PRODUK (sesuai referensi) ===== */

.product-intro {
  max-width: 820px;
  margin: 0 0 clamp(28px, 3.6vw, 52px) 0;
  padding: 0 var(--page-x);
  color: var(--cream);
  font-family: "Recline", Georgia, serif;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.45;
  font-style: italic;
}
.product-intro strong {
  font-weight: 700;
  font-style: normal;
  font-family: "Vera Humana", Georgia, serif;
}

.product-card .card-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(0deg, rgba(243, 181, 162, 0.88) 0%, rgba(243, 181, 162, 0.40) 100%);
  padding: clamp(14px, 1.6vw, 24px) clamp(16px, 1.8vw, 28px);
  border-radius: 20px 20px 12px 12px;
  backdrop-filter: blur(2px);
  margin-top: auto;
  width: 100%;
}

.product-card h2 {
  margin: 0 0 2px 0;
  font-size: clamp(28px, 2.6vw, 44px);
}
.product-card .price {
  display: inline-block;
  margin: 0 0 4px 0;
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 26px);
  color: var(--green-dark);
  letter-spacing: -0.01em;
}
.product-card .price small {
  font-weight: 400;
  font-size: 0.75em;
  opacity: 0.75;
}
.product-card .desc {
  margin: 0;
  font-family: "Recline", Georgia, serif;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.3;
  font-style: italic;
  opacity: 0.92;
}

.product-hero-wrap {
  position: relative;
  margin: 0 var(--page-x) clamp(40px, 5vw, 64px);
}
.product-hero-wrap .product-hero {
  margin: 0;
}

.rabbit-full {
  position: absolute;
  left: 50%;
 bottom: clamp(600px, 10vw, 25px);
  width: 100vw;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  z-index: 5;
  object-fit: contain;
  pointer-events: none;
}

.product-copyright {
  text-align: center;
  margin: clamp(20px, 3vw, 40px) 0 clamp(12px, 2vw, 28px) 0;
  color: var(--cream);
  font-family: "Recline", Georgia, serif;
  font-size: clamp(16px, 1.3vw, 22px);
  font-style: italic;
  opacity: 0.85;
}
.product-copyright .year {
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: normal;
}

@media (min-width: 980px) {
  :root {
    --header-h: clamp(92px, 12vh, 132px);
    --page-x: clamp(56px, 6vw, 116px);
  }
  html, body {
    width: 100%;
    min-height: 100%;
  }
  body {
    overflow-x: hidden;
  }
  .site-header {
    position: absolute;
    top: 0;
    height: var(--header-h);
    padding: 0 var(--page-x);
  }
  .site-nav {
    gap: clamp(30px, 3vw, 52px);
    font-size: clamp(18px, 1.55vw, 25px);
    line-height: 1;
  }
  .site-nav a::after {
    display: none;
  }
  .page-panel {
    min-height: 100svh;
  }
  .hero {
    min-height: 100svh;
  }
  .content-page {
    min-height: 100svh;
    padding: clamp(120px, 14vh, 164px) var(--page-x) clamp(54px, 7vh, 84px);
    position: relative;
  }
  .page-title {
    position: relative;
    top: auto;
    left: auto;
    min-height: 0;
    margin-top: -80px;
    gap: clamp(28px, 3.5vw, 58px);
  }
  .page-title h1 {
    font-size: clamp(60px, 5.7vw, 94px);
    line-height: 1;
  }
  .page-title p {
    font-size: clamp(22px, 1.9vw, 31px);
    line-height: 1.05;
  }

  .profile-card {
    width: min(100%, 1500px);
    margin: 0 auto;
    min-height: clamp(560px, 68vh, 760px);
    grid-template-columns: 57.2% 42.8%;
    border-radius: clamp(28px, 2.4vw, 44px);
  }
  .profile-photo {
    min-height: 0;
  }
  .profile-text {
    gap: clamp(22px, 3vh, 40px);
    padding: clamp(34px, 4vw, 72px);
    font-size: clamp(21px, 1.55vw, 28px);
    line-height: 1.17;
  }

  .product-page {
    overflow: visible;
    padding-top: clamp(112px, 12.5vh, 146px);
    padding-bottom: clamp(38px, 5vh, 64px);
  }
  .product-title {
    width: min(100%, 1680px);
    margin-inline: auto;
    margin-bottom: clamp(32px, 4vh, 48px);
    padding: 0;
  }
  .product-title h1 {
    font-size: clamp(66px, 6vw, 104px);
  }
  .product-title p {
    font-size: clamp(22px, 1.85vw, 30px);
  }

  .product-grid {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(290px, 29vh, 330px);
    gap: clamp(26px, 3vw, 42px);
    width: min(100%, 1680px);
    margin: 0 auto;
    padding: 0;
  }

  .product-card {
    position: relative;
    border-radius: clamp(24px, 2.2vw, 36px);
    min-width: 0;
    min-height: clamp(290px, 29vh, 360px);
    padding: clamp(18px, 2vw, 32px);
    transition: transform 240ms ease, box-shadow 240ms ease;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }
  .product-card .card-content {
    padding: clamp(14px, 1.6vw, 24px) clamp(16px, 1.8vw, 28px);
  }
  .product-card h2 {
    margin: 0 0 2px 0;
    font-size: clamp(34px, 3.05vw, 54px);
    line-height: 1;
    white-space: normal;
  }
  .product-backpack {
    grid-column: 1;
    grid-row: 1;
  }
  .product-backpack img {
    margin-bottom: 50px;
    margin-left: -20px;
    width: 300px;
  }
  .product-accessories {
    grid-column: 2 / span 2;
    grid-row: 1;
  }
  .product-accessories h2 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .product-accessories img {
    margin-bottom: -10px;
    margin-right: 0px;
    width: 600px;
  }
  .product-shoes {
    grid-column: 4;
    grid-row: 1;
  }
  .product-shoes h2 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .product-shoes img {
    margin-bottom: -10px;
  }
  .product-slip {
    grid-column: 1;
    grid-row: 2;
  }
  .product-slip img {
    left: -1%;
    bottom: 4%;
    width: min(102%, 380px);
  }
  .product-tote {
    grid-column: 2;
    grid-row: 2;
    width: auto;
  }
  .product-tote h2 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .product-tote img {
    left: 50%;
    bottom: 7%;
    width: min(89%, 370px);
    transform: translateX(-50%);
  }
  .product-hat {
    grid-column: 3;
    grid-row: 2;
    margin-left: 0;
  }
  .product-hat h2 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .product-hat img {
    margin-bottom: 80px;
    margin-left: -40px;
    width: 300px;
  }
  .product-clutch {
    grid-column: 4;
    grid-row: 2;
    min-height: 0;
  }
  .product-clutch h2 {
    font-size: clamp(31px, 2.55vw, 45px);
    text-align: center;
  }
  .product-clutch img {
    left: 50%;
    bottom: 0;
    width: min(58%, 240px);
    transform: translateX(-50%);
  }

  .page-contact .page-title {
    margin-top: 0;
    margin-bottom: clamp(28px, 3.6vw, 46px);
  }
  .contact-page {
    padding-bottom: clamp(70px, 9vh, 130px);
    overflow: visible !important;
  }
  .contact-layout {
    display: block;
    width: 100%;
    margin-left: 0;
    padding-left: clamp(420px, 40vw, 640px);
  }
  .phone-visual {
  position: absolute !important;
  top: auto !important;
  bottom: 0 !important;
  left: clamp(10px, -2vw, 10px);
  height: clamp(900px, 148vh, 1500px);
  width: auto;
  margin: 0;
  transform: scale(1.1);
}
  .contact-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: clamp(-90px, -6vw, -30px);
  }
  .contact-list {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    display: grid;
    gap: clamp(18px, 2.4vh, 30px);
    padding: 0;
  }
  .contact-card {
    min-height: clamp(112px, 12vh, 150px);
    border-radius: clamp(18px, 1.6vw, 28px);
  }
  .contact-card img {
    width: 56px;
    height: 40px;
  }
  .contact-card h2 {
    margin-bottom: 6px;
    font-size: 24px;
  }
  .contact-card a,
  .contact-card p {
    font-size: 18px;
  }
  .copyright {
    position: absolute;
    right: clamp(48px, 8vw, 140px);
    bottom: clamp(26px, 4vh, 56px);
    margin: 0;
    text-align: right;
    font-size: clamp(20px, 1.6vw, 27px);
  }

  /* Product intro pada desktop */
  .product-intro {
    padding: 0;
  }
}

/* ============================================
   TABLET (≤ 980px)
   ============================================ */
@media (max-width: 980px) {
  :root {
    --header-h: 76px;
    --page-x: clamp(18px, 5vw, 36px);
  }
  .site-header {
    justify-content: space-between;
    background: rgba(32, 112, 80, 0.9);
    backdrop-filter: blur(8px);
  }
  .brand-mark {
    display: block;
    width: 142px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: var(--page-x);
    right: var(--page-x);
    display: grid;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--peach);
    color: var(--green);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a {
    padding: 16px 20px;
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav a[aria-current="page"] {
    color: var(--green-dark);
    background: rgba(21, 90, 63, 0.12);
    font-weight: 700;
  }
  .site-nav a:hover {
    color: var(--green-dark);
    background: rgba(21, 90, 63, 0.08);
  }

  .hero {
    min-height: 760px;
    background-position: 58% center;
  }
  .hero h1 {
    max-width: 320px;
    font-size: clamp(24px, 7vw, 36px);
  }
  .page-title {
    display: block;
    margin-bottom: 34px;
  }
  .page-title h1 {
    font-size: clamp(48px, 12vw, 74px);
  }
  .page-title p {
    margin-top: 8px;
    font-size: 22px;
  }

  .profile-card,
  .contact-layout {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .contact-right {
    display: flex;
    flex-direction: column;
  }
  .profile-photo {
    min-height: 380px;
  }
  .profile-text {
    font-size: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 320px;
    width: auto;
    margin-left: 0;
    padding: 0 var(--page-x);
  }
  .product-card,
  .product-shoes,
  .product-clutch {
    border-radius: 28px;
  }
  .product-accessories {
    grid-column: span 2;
    grid-row: auto;
  }
  .product-backpack,
  .product-shoes,
  .product-slip,
  .product-tote,
  .product-hat,
  .product-clutch {
    grid-column: auto;
    grid-row: auto;
  }

  .phone-visual {
    height: auto;
    width: min(520px, 100%);
    margin: calc(-1 * (var(--header-h) + 90px)) auto 0;
    position: relative;
    z-index: 0;
  }
  .contact-list {
    padding-top: 0;
  }
  .copyright {
    position: static;
    margin-top: 34px;
    text-align: center;
  }

  /* penyesuaian card content di tablet */
  .product-card .card-content {
    padding: 12px 16px;
  }
  .product-card h2 {
    font-size: 28px;
  }
  .product-card .price {
    font-size: 18px;
  }
  .product-card .desc {
    font-size: 14px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 690px;
    background-position: 60% center;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(255, 242, 217, 0.55), rgba(32, 112, 80, 0) 55%);
  }
  .hero-copy {
    right: var(--page-x);
    left: auto;
  }
  .content-page {
    padding-top: 104px;
  }
  .profile-card {
    border-radius: 28px;
  }
  .profile-photo {
    min-height: 300px;
  }
  .profile-text {
    gap: 24px;
    padding: 30px 24px;
    font-size: 21px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 22px;
  }
  .product-accessories {
    grid-column: auto;
  }
  .product-card h2 {
    font-size: 40px;
  }
  .product-slip img {
    left: 4%;
    width: 92%;
  }
  .product-hat img {
    bottom: 0;
    width: 58%;
  }
  .product-clutch img {
    bottom: 0;
    width: 38%;
  }
  .contact-card {
    min-height: 150px;
    padding: 24px 16px;
  }
  .contact-card a,
  .contact-card p {
    font-size: 19px;
    word-break: break-word;
  }

  .product-card .card-content {
    padding: 10px 14px;
  }
  .product-card h2 {
    font-size: 24px;
  }
  .product-card .price {
    font-size: 16px;
  }
  .product-card .desc {
    font-size: 13px;
  }
}

/* ===== GAYA UNTUK HALAMAN PROFIL (tidak terkait produk) ===== */
.hero {
  position: relative;
  min-height: 100vh;
}
.home-artboard {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #207050;
}
.brand-mark {
  width: 220px;
}
.site-header {
  padding: 40px 72px 0;
}
.site-nav {
  font-size: 20px;
  gap: 48px;
  color: #F8EDE4;
}
.hero-copy {
  left: auto;
  right: var(--page-x);
  bottom: clamp(44px, 6vw, 90px);
  max-width: 640px;
  text-align: right;
  z-index: 10;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.15;
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
}
.copyright {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  margin: 0;
  color: #ffffff;
  font-family: "Recline", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  z-index: 10;
}
.year {
  font-family: "Vera Humana", Georgia, serif;
}

.page-profile .content-page {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-profile .profile-title {
  margin-bottom: clamp(4px, 1vh, 12px);
}
.page-profile .profile-title h1 {
  margin: 0;
  color: var(--brown);
  font-family: "Vera Humana", Georgia, serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
}
.page-profile .profile-title p {
  margin: 0;
  color: var(--brown);
  font-family: "Recline", Georgia, serif;
  font-size: clamp(18px, 1.6vw, 26px);
  font-style: italic;
}
.page-profile .profile-wrap {
  position: relative;
  padding-bottom: clamp(80px, 9vw, 140px);
}
.page-profile .profile-photo {
  position: relative;
}
.page-profile .gold-rabbit {
  position: absolute;
  left: 50%;
  bottom: -550px;
  width: 100vw;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  z-index: 5;
  object-fit: contain;
  pointer-events: none;
}
.page-profile .copyright {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(8px, 1.6vw, 22px);
  transform: translateX(-50%);
  z-index: 5;
  margin: 0;
  color: var(--cream);
  font-size: clamp(18px, 1.2vw, 20px);
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.page-profile .profile-text {
  justify-content: flex-start;
  padding-top: clamp(24px, 4vw, 56px);
  gap: clamp(20px, 3vw, 36px);
}

@media (min-width: 980px) {
  .page-profile .content-page {
    padding-top: clamp(150px, 16vh, 210px);
    padding-bottom: clamp(70px, 9vh, 110px);
  }
  .page-profile .profile-title h1 {
    font-size: clamp(56px, 5vw, 80px);
  }
  .page-profile .profile-title p {
    font-size: clamp(20px, 1.6vw, 26px);
  }
  .page-profile .profile-text {
    gap: clamp(20px, 2.5vh, 36px);
    font-size: clamp(16px, 1.2vw, 21px);
  }
}

@media (max-width: 980px) {
  .page-profile .content-page {
    padding-top: 130px;
    padding-bottom: 70px;
  }
  .page-profile .profile-photo {
    min-height: 320px;
  }
  .page-profile .profile-wrap {
    padding-bottom: clamp(80px, 12vw, 120px);
  }
  .page-profile .copyright {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 6px;
    font-size: 16px;
  }
  .page-profile .profile-text {
    justify-content: flex-start;
    padding: 30px 28px;
    padding-top: 20px;
    gap: 18px;
    font-size: 18px;
  }
  .page-profile .profile-title h1 {
    font-size: clamp(44px, 8vw, 64px);
  }
  .page-profile .profile-title p {
    font-size: 18px;
  }
}

@media (max-width: 620px) {
  .page-profile .content-page {
    padding-top: 104px;
    padding-bottom: 56px;
  }
  .page-profile .profile-photo {
    min-height: 260px;
  }
  .page-profile .profile-wrap {
    padding-bottom: 72px;
  }
  .page-profile .copyright {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 4px;
    font-size: 14px;
  }
  .page-profile .profile-text {
    justify-content: flex-start;
    font-size: 16px;
    padding: 24px 20px;
    padding-top: 14px;
    gap: 14px;
  }
  .page-profile .profile-title h1 {
    font-size: 38px;
  }
  .page-profile .profile-title p {
    font-size: 16px;
  }
}
/* ============================================================
   HALAMAN PRODUK — REDESAIN SESUAI REFERENSI (produk.html)
   Kelas baru (product-hero, pcard, dst) dibuat terpisah dari
   kelas produk lama agar tidak mengganggu halaman lain.
   ============================================================ */

/* ---------- HERO: foto + kartu deskripsi "Our Product" ---------- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 32px;
  overflow: hidden;
  margin: 0 var(--page-x) clamp(140px, 18vw, 260px);
  background: var(--peach);
}
.product-hero-media {
  min-height: 260px;
}
.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(24px, 3vw, 44px) clamp(24px, 4vw, 56px);
  color: var(--brown);
}
.product-hero-heading {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  align-items: start;
}
.product-hero-heading h1 {
  margin: 0;
  color: var(--brown);
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 0.95;
}
.hero-lead {
  margin: 0;
  color: var(--brown);
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.25;
}
.product-hero-desc {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  max-width: 350px;
}
.product-hero-desc p {
  margin: 0;
  font-family: "Recline", Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.45;
}

@media (min-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr 0.95fr;
    min-height: clamp(300px, 30vw, 400px);
  }
  .product-hero-copy {
    justify-content: center;
  }
  .product-hero-heading {
    grid-template-columns: auto 1fr;
    column-gap: clamp(18px, 2.4vw, 32px);
    row-gap: 0;
  }
  .product-hero-heading h1 {
    white-space: nowrap;
  }
  .hero-lead {
    min-width: 260px;
  }
}

/* ---------- GRID KARTU PRODUK ---------- */
.product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 30px);
  margin: clamp(400px, -10vw, -160px) var(--page-x) clamp(40px, 5vw, 64px);
}

.pcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--peach);
  border-radius: 20px;
  padding: clamp(12px, 1.1vw, 16px) clamp(12px, 1.4vw, 18px) clamp(12px, 1.1vw, 14px);
  color: var(--brown);
}
.pcard h2 {
  margin: 0 0 1px;
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 1.9vw, 29px);
  line-height: 1;
}
.pcard-price {
  margin: 0 0 clamp(4px, 0.6vw, 8px);
  font-family: "Vera Humana", Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.2;
}
.pcard-price-note {
  font-weight: 400;
  font-size: 0.9em;
  opacity: 0.85;
}
.pcard img {
  width: 100%;
  max-width: 240px;
  height: clamp(110px, 11vw, 160px);
  object-fit: contain;
  margin: 0 auto clamp(4px, 0.6vw, 8px);
}
.pcard-desc {
  margin: 0;
  font-family: "Recline", Georgia, serif;
  font-style: italic;
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.25;
}

/* kartu accessories berisi dua sub-item berdampingan */
.pcard-accessories-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 24px);
  width: 100%;
}
.pcard-accessories-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pcard-accessories-item img {
  max-width: 150px;
  height: clamp(90px, 9vw, 130px);
}

/* ---------- Susunan desktop: 3 kartu baris 1, 4 kartu baris 2 ---------- */
@media (min-width: 900px) {
  .product-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .pcard-backpack { grid-column: 1 / 2; grid-row: 1; }
  .pcard-accessories { grid-column: 2 / 4; grid-row: 1; }
  .pcard-shoes { grid-column: 4 / 5; grid-row: 1; }
  .pcard-slip,
  .pcard-tote,
  .pcard-hat,
  .pcard-clutch { grid-row: 2; }
}

@media (max-width: 620px) {
  .product-hero-heading {
    grid-template-columns: 1fr;
  }
}