:root{
  --bg:#452757;
  --text:#111;
  --muted:#512D63;
  --accent:#1b1b1b;
  --accent-2:#b58a66;
  --container:1200px;
  --radius:10px;
  --gap:1.25rem;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

@font-face {
  font-family: 'Obra Letra';
  src: url('font/KCObraLetraBold.ttf') format('truetype'),
       url('font/KCObraLetraRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Font 2 */
@font-face {
  font-family: 'Marta';
  src: url('font/marta.regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* HERO */
.hero{
  padding:3.25rem 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:2rem;
  align-items:start;
}
.eyebrow{ text-transform:uppercase; letter-spacing:0.12em; color:var(--muted); margin:0 0 0.6rem 0; font-size:0.78rem }
.hero h1{ font-family: 'Obra Letra', serif; font-size:1.75rem; margin:0 0 1rem 0; color:var(--accent) }
.lead{ color:var(--muted); margin-bottom:1.25rem }

.btn{
  display:inline-block;
  text-decoration:none;
  padding:0.6rem 1rem;
  border-radius:8px;
  background:var(--accent);
  color:#fff;
  font-weight:600;
}
.btn.ghost{
  background:transparent;
  border:1px solid #ddd;
  color:var(--text);
}

/* profile card */
.profile-card{
  background:#fafafa;
  border-radius:var(--radius);
  padding:1rem;
  box-shadow: 0 6px 18px rgba(43,43,43,0.03);
}
.profile-card h3{ margin:0 0 0.25rem 0; font-size:1.05rem }
.profile-card .role{ color:var(--muted); margin-top:0; margin-bottom:0.75rem }
.meta-block{ margin-bottom:0.75rem }
.skill-list, .lang-list{ margin:0; padding-left:1rem; color:var(--muted) }

/* COLLECTION grid */
.collection{ padding:3rem 0; }
.section-header{ margin-bottom:1.25rem }
.grid.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:1rem;
}
.card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 8px 24px rgba(16,16,16,0.05);
  display:flex;
  flex-direction:column;
}
.card img{ width:100%; height:220px; object-fit:cover; display:block }
.card-body{ padding:0.8rem 1rem; }
.card h3{ margin:0 0 0.25rem 0 }
.card p{ margin:0 0 0.5rem 0; color:var(--muted) }
.view-detail{ background:transparent; border:1px solid #ddd; padding:0.35rem 0.6rem; border-radius:8px; cursor:pointer }

/* ABOUT */
.about{ padding:2.5rem 0; border-top:1px dashed #eee; }
.about-grid{ display:grid; grid-template-columns:1fr 380px; gap:1.25rem; align-items:start }

/* footer */
.site-footer{ padding:1.25rem 0; border-top:1px solid #f3f3f3; color:var(--muted); text-align:center }

/* lightbox */
.lightbox{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center;
  background:rgba(0,0,0,0.6); padding:2rem; z-index:100;
}
.lightbox[aria-hidden="false"]{ display:flex }
.lightbox-inner{ background:#fff; padding:1rem; border-radius:10px; max-width:1100px; width:100%; max-height:90vh; overflow:auto; position:relative }
.lightbox img{ width:100%; height:auto; display:block; border-radius:6px }
.lightbox-close{ position:absolute; top:8px; right:8px; background:none; border:0; font-size:1.1rem; cursor:pointer }

/* accessibility helper */
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0 }

/* Responsive */
@media (max-width:980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .grid.gallery{ grid-template-columns: repeat(2,1fr) }
  .nav{ display:none }
  .nav-toggle{ display:block }
}
@media (max-width:640px){
  body{ font-size:15px }
  .grid.gallery{ grid-template-columns: 1fr }
  .profile-card{ padding:0.8rem }
  .hero h1{ font-size:1.35rem }
}

.hero-centered {
  position: relative;
  border-radius: 18px;
  min-height: 100vh;
  background: #452757;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  font-family: "Playfair Display", serif;
}

/* --- Split background artwork --- */
.hero-centered::before,
.hero-centered::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 75vw; 
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: 0; 
}

/* Left artwork */
.hero-centered::before {
  left: 0;
  background-image: url("image/Ceramic.png"); 
  background-position: center left;
  transform: translateX(-10vw); 
}

/* Right artwork */
.hero-centered::after {
  right: 0;
  background-image: url("image/Ceramicc.png"); 
  background-position: center right;
  transform: translateX(10vw); 
}

/* NAV */
.top-nav {
  position: absolute;
  top: 2rem;
  z-index: 10;
}
.top-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  padding: 0;
  margin: 0;
}
.top-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #e5dcf3;
  letter-spacing: 0.1em;
}
.top-nav a:hover { color: #fff; }

/* HERO TEXT */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-top: 8rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.ornament {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #d9c1ff;
}
.intro {
  font-family: 'Marta', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #e5dcf3;
  line-height: 1.6;
  letter-spacing: 0.08em;
  max-width: 580px;
  margin: 0 auto 2rem auto;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  background: #fff;
  color: #4a3267;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: #e5dcf3;
  transform: translateY(-2px);
}
.hero-frame {
  background: #2d1e3f; 
  border-radius: 24px; 
  padding: 0.75rem; 
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25); 
  max-width: 1200px; 
  margin: 1.5rem auto; 
  overflow: hidden; 
}

.hero-centered {
  position: relative; 
  border-radius: 18px; 
  overflow: hidden;
  
}

/* =====FINAL SOCIAL-BAR BOOKMARK = */

.social-bar {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  background: rgba(45, 30, 63, 0.8);
  padding: 0.75rem 2rem;
  border-radius: 999px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 3;
}

.social-bar a img {
  width: 26px;
  height: 26px;
  filter: invert(100%);
  opacity: 0.9;
  transition: 0.3s;
}

.social-bar a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .social-bar {
    bottom: 1rem;
    padding: 0.65rem 1.6rem;
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .social-bar {
    bottom: 0.8rem;
    padding: 0.6rem 1.4rem;
    gap: 1rem;
  }
  .social-bar a img {
    width: 22px;
    height: 22px;
  }
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .top-nav ul { gap: 1.5rem; }
  .hero-content { margin-top: 6rem; }
  .intro { font-size: 0.85rem; }
}
@media (max-width: 600px) {
  .hero-centered::before,
  .hero-centered::after {
    width: 90vw;
    transform: none; 
  }
}

.about-centered {
  position: relative; 
  background: #2B0738;
  color: #fff;
  text-align: center;
  padding: 8rem 1rem 5rem; 
  font-family: "Inter", sans-serif;
  z-index: 1;
}

.about-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 5rem auto;
  padding: 0;
  text-align: center;
}

.about-container::after {
  content: "";
  position: absolute;
  top: calc(50% + 50px);
  left: 0;
  right: 0;
  height: 150px;
  background: transparent;
  z-index: 1;
}

/* PHOTO — centered and acts as background anchor */
.about-photo {
  position: relative;
  width: clamp(280px, 80vw, 1000px); 
  aspect-ratio: 5 / 4;    
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* TEXT — overlaps the lower half of the photo */
.about-text {
  position: relative;
  max-width: 750px;
  margin: calc(-15vw) auto 0 auto;
  background: transparent;
  padding: 2rem 1.5rem 0rem 1.5rem;
  border-radius: 16px;
  box-shadow: none;
  z-index: 2;
}

.about-text p, .about-text h2 {
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* Typography */
.about-text .ornament {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #d9c1ff;
}
.intro-small {
  font-family: 'Marta', bold;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.intro-desc {
  font-family: 'Marta', sans-serif;
  font-size: 0.9rem;
  color: #e5dcf3;
  line-height: 1.6;
  margin-bottom: 0rem;
}
.title {
  font-family: 'Obra Letra', serif;
  font-size: clamp(2rem, 10vw, 6rem);
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 0rem 0;
  text-align: center;
}

/* The three info boxes */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 0rem;
}
.info-box {
  background: #4a3267;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  width: 260px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.info-box h4 {
  font-family: 'Marta', serif;
  font-size: 0,8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.info-box p {
  font-size: 0.85rem;
  color: #e5dcf3;
  line-height: 1.6;
}

.about-centered::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 100%;
  height: 100%;

  background-image: url("image/bgtigatiga.png");
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center;

  z-index: -1;
  pointer-events: none;
}

/* Responsive layout */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 2rem;
  }
  .about-photo {
    width: 220px;
    height: 220px;
  }
  .info-box {
    width: 85%;
  }
}

/* --------Header----------- */
.header { text-align: right; margin-top: 6rem; margin-bottom:3rem; margin-right: 5rem;  position:relative; }
.about-text .ornament {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #d9c1ff;
}
.collection-title {
  text-align: right;
  width: 100%;
  padding-right: 5rem; 
  font-size:4.5rem; font-weight:600;
  text-transform:uppercase; color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.3);
  font-family: 'Obra Letra', serif;
  letter-spacing: 0.08em;
  color: #fff; margin-bottom:10rem, transparent;
}


/* ------Carousel---------------- */
.carousel-container {
  position: relative;
  overflow: visible;
  z-index: 9; 
}

/* Background besar di tengah */
.carousel-container::before {
  content: "";
  position: absolute;
  top: -200px;      
  left: 50%;        
  transform: translateX(-50%); 
  
  width: 900px;      
  height: 900px;     
  
  background-image: url("image/backgroundtigarevisi.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  
  z-index: -1;       
  pointer-events: none; 
}

.carousel {
  padding: 0 10%;
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Square cards */
.carousel-item {
  flex:0 0 260px;              
  aspect-ratio:1/1;            
  border-radius:24px; overflow:hidden; position:relative;
  box-shadow:0 15px 35px rgba(0,0,0,.4);
  transition:all .5s cubic-bezier(.25,.8,.25,1);
  cursor:pointer; transform:scale(.85); opacity:.7;
}
.carousel-item.active {
  flex:0 0 320px;              
  transform:scale(1); opacity:1; z-index:10;
  box-shadow:0 25px 50px rgba(0,0,0,.5);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
  transition: transform .5s ease;
}
.carousel-item.active img {
  transform: scale(1.05);
}

/* Number badge */
.item-number {
  position:absolute; top:16px; left:16px;
  background:rgba(45,27,61,.8); color:#fff;
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; font-weight:bold;
  backdrop-filter:blur(4px);
  border:2px solid rgba(255,255,255,.2); z-index:5;
}

/* View Detail button */
.view-detail {
  position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
  background:rgba(45,27,61,.9); color:#fff; border:none;
  padding:10px 24px; border-radius:30px; font-size:.9rem; font-weight:600;
  cursor:pointer; opacity:0; transition:all .4s ease;
  backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.2);
}
.carousel-item.active .view-detail { opacity:1; bottom:30px; }


/* ---Get In Touch------- */
.get-in-touch h1 {
  padding-top: clamp(10rem, 25vh, 12rem);
  font-family: 'Obra Letra', serif;
  text-align: left;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0;
}
.get-in-touch h2,
.get-in-touch h3 {
  font-family: 'Obra Letra', serif;
  text-align: left;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0;
  padding-top: clamp(3rem, 10vh, 8rem);
}

/* Make them sit farther to the right */
.get-in-touch h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-left: clamp(18rem, 35vw, 60rem); 
}

.get-in-touch h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-left: clamp(22rem, 40vw, 70rem); 
  margin-bottom: 1rem;
}

.get-in-touch h3 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-left: clamp(26rem, 45vw, 80rem); 
  margin-bottom: 10rem;
}

.get-in-touch {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.get-in-touch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; 
  width: 100%;
  height: 80vh; 
  background-image: url("image/Backgroundempatrevisi.png");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
  mask-image: linear-gradient(to right, black 75%, transparent 100%);
  opacity: 1;
  z-index: -1;
}

/* paragraph next to GET */
.get-in-touch .right-text {
  position: absolute;
  top: clamp(11rem, 25vh, 14rem);   
  left: clamp(40rem, 50vw, 65rem); 
  max-width: 400px;
  text-transform: uppercase;
  font-family: 'Marta', sans-serif;

  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #e5dcf3;
  line-height: 1.6;
  z-index: 2;
}

/* paragraph below TOUCH */
.get-in-touch .bottom-text {
  position: absolute;
  top: clamp(27rem, 44vh, 32rem); 
  left: auto;
  right: clamp(4rem, 8vw, 10rem); 
  
  max-width: 320px;
  text-transform: uppercase;
  font-family: 'Marta', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #e5dcf3;
  line-height: 1.6;
  text-align: right; 
  z-index: 2;
}

/* -------------------------------------------------
   Responsive
------------------------------------------------- */
@media (max-width:768px) {
  .header h1 { font-size:3rem; }
  .carousel { gap:1rem; padding:0 5%; }
  .carousel-item { flex:0 0 200px; }
  .carousel-item.active { flex:0 0 240px; }
  .get-in-touch h2 { font-size:2.8rem; }
}
@media (max-width: 768px) {
  .get-in-touch {
    padding: 4rem 1.5rem;
  }
  .get-in-touch h1,
  .get-in-touch h2,
  .get-in-touch h3 {
    margin-left: 0;
    text-align: center;
  }
  .get-in-touch .right-text,
  .get-in-touch .bottom-text {
    position: static;
    margin: 1rem auto;
    text-align: center;
  }
  @media (max-width: 900px) {
  .carousel-container::before {
    width: 70vw;
    height: 70vw;
    top: -150px;
  }
  }
  @media (max-width: 600px) {
  .carousel-container::before {
    width: 90vw;
    height: 90vw;
    top: -100px;
  }
  }
}

.lightbox {
  background: rgba(0, 0, 0, 0.55); 
  backdrop-filter: blur(4px); 
}

.lightbox-inner {
  background: rgba(255, 255, 255, 0.85); /* putih semi transparan */
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation: popupFade 0.25s ease-out;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* --- CONTACT SECTION --- */

.contact-section {
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: 'Marta', sans-serif;
  background: #2B0738;
}

.contact-box {
  width: 100%;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.12);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  text-align: center;
}

.contact-title {
  font-family: 'Obra Letra', serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-sub {
  font-size: 0.95rem;
  color: #e5dcf3;
  margin-bottom: 2.5rem;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.input-group {
  text-align: left;
}

.input-group label {
  font-size: 0.9rem;
  color: #d8c8ff;
  margin-bottom: 0.4rem;
  display: block;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1rem;
  outline: none;
  font-family: 'Inter', sans-serif;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.15);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #cab7e9;
}

/* Submit Button */
.contact-btn {
  margin-top: 1rem;
  padding: 1rem 2.2rem;
  background: #fff;
  color: #4a3267;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.contact-btn:hover {
  background: #e5dcf3;
  transform: translateY(-3px);
}

/* THANK YOU POPUP OVERLAY */
.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  display: none; /* default: hidden */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* POPUP BOX */
.thankyou-box {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  padding: 1.8rem 2rem;
  border-radius: 18px;
  max-width: 280px;      
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  animation: fadeIn 0.25s ease-out;
}

.thankyou-box h3 {
  font-family: 'Obra Letra', serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.thankyou-box p {
  font-family: 'Marta', sans-serif;
  font-size: 0.9rem;
  color: #e5dcf3;
  margin-bottom: 1.2rem;
}

.thankyou-box button {
  padding: 0.6rem 1.2rem;
  border: none;
  background: #fff;
  color: #4a3267;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
}

.thankyou-box button:hover {
  background: #e5dcf3;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.main-footer {
  width: 100%;
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.12); 
  color: #ffffff;
  backdrop-filter: blur(10px);       
  -webkit-backdrop-filter: blur(10px);
  font-family: 'Marta', sans-serif;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18); 
}