:root{
  --bg: #f4efe7;           /* warm studio paper */
  --ink: #141414;
  --muted: rgba(20,20,20,.62);
  --line: rgba(20,20,20,.12);

  --black: #000;
  --card: #fffaf1;

  --radius: 18px;
  --shadow: 0 18px 55px rgba(0,0,0,.18);

  --max: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

a{ color: inherit; }
a:hover{ text-decoration: none; }

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 14px; top: 14px; width:auto; height:auto; padding: 10px 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  z-index: 9999;
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  background: rgba(244,239,231,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  gap: 2px;
}
.brand-name{
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-sub{
  font-size: 13px;
  color: var(--muted);
}

.menu-toggle{
  display:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  text-decoration:none;
  padding: 8px 8px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(0,0,0,.05);
}

/* Dropdown */
.dropdown{ position: relative; }
.dropdown-btn{
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}
.dropdown-menu{
  display:none;
  position:absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.dropdown-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration:none;
}
.dropdown-menu a:hover{ background: rgba(0,0,0,.05); }
.dropdown.open .dropdown-menu{ display:block; }

.lang{
  display:flex;
  align-items:center;
  gap: 6px;
  padding-left: 6px;
}
.lang a{
  font-weight: 750;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang a[aria-current="page"]{
  background: rgba(0,0,0,.07);
}
.lang .sep{ opacity:.5; }

/* Hero */
.hero{
  background: var(--black);
  color: #fff;
  padding: 40px 0 34px;
}
.hero-inner{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:center;
  text-align:center;
}
.hero-title{
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.02em;
  font-weight: 850;
}
.hero-lede{
  margin: 6px 0 0;
  color: rgba(255,255,255,.78);
  max-width: 70ch;
}

.hero-frame{
  margin: 10px 0 0;
  width: 100%;
  max-width: 600px;            /* YOUR REQUIREMENT */
  background: #2a2a2a;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 80px rgba(0,0,0,.55);  /* frame shadow */
}

.hero-frame img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255,255,255,.08);
}

.hero-caption{
  margin: 12px 6px 2px;
  font-size: 14px;
  color: rgba(255,255,255,.74);
}
.muted{ opacity:.8; }

.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
  margin-top: 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  text-decoration:none;
  font-weight: 750;
}
.btn-primary{
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn-primary:hover{ opacity:.92; }
.btn-ghost{
  background: transparent;
  color: #fff;
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }

/* Body */
.body{
  padding: 26px 0 56px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  padding: 22px;
}

.intro{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
  align-items: start;
}

h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 10px; }
.small{ margin: 0; color: var(--muted); font-size: 14px; }
.small a{ color: inherit; }

.callout{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0,0,0,.03);
}
.callout-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.callout-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(0,0,0,.55);
  font-weight: 750;
}
.callout-date{
  font-weight: 850;
}
.callout-note{
  color: rgba(0,0,0,.72);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.tile{
  display:block;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.tile:hover{ background: rgba(255,255,255,.78); }
.tile-title{ font-weight: 850; margin-bottom: 6px; }
.tile-text{ color: rgba(0,0,0,.65); }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

/* Responsive */
@media (max-width: 920px){
  .intro{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px){
  .menu-toggle{ display:inline-flex; }
  .nav{
    display:none;
    position: absolute;
    right: 18px;
    left: 18px;
    top: 62px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    background: rgba(250,245,235,.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 26px 80px rgba(0,0,0,.14);
  }
  .nav.open{ display:flex; }

  .dropdown-menu{
    position: static;
    min-width: auto;
    margin-top: 8px;
  }
  .dropdown-btn{ width: 100%; text-align:left; }
  .lang{ justify-content: flex-start; padding-left: 0; }
}

/* ===== Contact page ===== */

.page-hero{
  background:#000;
  color:#fff;
  padding: 40px 0 36px;
}

.page-title{
  margin:0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing:-0.02em;
  font-weight: 850;
}

.page-sub{
  margin: 12px 0 0;
  color: rgba(255,255,255,.85);
  max-width: 65ch;
  font-weight: 500;
}

.contact-body{
  padding: 30px 0 70px;
}

.page-layout{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items:start;
}

.contact-card{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(20,20,20,.12);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  padding: 26px;
}

.contact-label{
  display:inline-block;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(20,20,20,.60);
  font-weight: 800;
}

.contact-h2{
  margin: 10px 0 10px;
  font-size: 22px;
  font-weight: 850;
}

.contact-p{
  margin: 0;
  color: rgba(20,20,20,.78);
}

.contact-actions{
  margin: 18px 0 0;
}

.contact-small{
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(20,20,20,.60);
}

.contact-rule{
  border:0;
  height:1px;
  background: rgba(20,20,20,.12);
  margin: 22px 0;
}

.contact-dl{
  margin:0;
}

.contact-row{
  display:flex;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(20,20,20,.10);
}

.contact-row:first-child{
  border-top:0;
  padding-top:0;
}

.contact-row dt{
  width:140px;
  font-weight: 850;
  color: rgba(20,20,20,.80);
}

.contact-row dd{
  margin:0;
  color: rgba(20,20,20,.72);
}

/* Artwork (FIXED) */
.contact-art{
  display:flex;
  justify-content:center;
}

.contact-art-img{
  width:auto;           /* was 100% -> caused huge image */
  max-width:240px;      /* desktop size control for 155x324 */
  height:auto;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.18);
}

/* Responsive */
@media (max-width: 980px){
  .page-layout{
    grid-template-columns: 1fr;
  }

  .contact-art{
    order:-1;
    max-width: 600px;
    margin: 0 auto 24px;
  }

  .contact-art-img{
    max-width:100%; /* allow it to shrink nicely on small screens */
  }
}
.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.wa-icon{
  width:20px;
  height:20px;
}

/* biography static page by chatgpt */
.bio-hero {
  padding: 3rem 0 1.5rem;
}

.bio-title {
  font-size: 2rem;
  font-weight: 700;
}

.bio-sub {
  margin-top: .5rem;
  color: #6b7280;
}

.bio-body {
  padding: 2rem 0 4rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bio-portrait-wrap {
  position: relative;
  width: 200px;
  height: 200px;
}

.bio-img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  transition: opacity .6s ease;
}

.bio-img-hover {
  opacity: 0;
}

.bio-portrait-wrap:hover .bio-img-hover {
  opacity: 1;
}

.bio-portrait-wrap:hover .bio-img-base {
  opacity: 0;
}

.bio-caption {
  margin-top: .75rem;
  font-size: .85rem;
  color: #6b7280;
}

.bio-section-title {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bio-timeline {
  border-left: 2px solid #e5e7eb;
  padding-left: 1.5rem;
}

.bio-year {
  margin-bottom: 1.5rem;
}

.bio-year-label {
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: .25rem;
}

.bio-year.highlight .bio-year-label {
  color: #7c3aed;
}





/* =========================================
   BIOGRAPHY PAGE — ART IMAGE CARD
   ========================================= */

/* =========================================
   BIOGRAPHY PAGE — ART IMAGE
   ========================================= */

.bio-art {
  display: flex;
  justify-content: center;
}

.bio-art-card {
  padding: 0;
}

.bio-art-img {
  display: block;
  width: 100%;
  max-width: 400px;
  border-radius: 6px;

  /* deeper, more intentional shadow */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}
/* ===== Responsive: Biography ===== */
@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-art {
    order: -1;
  }
}