/* =========================================================
   BORA ULUYOL - ARTIST WEBSITE
   Clean Base CSS
========================================================= */

/* 1) ROOT
========================================================= */

:root {
  --bg: #11100e;
  --bg-soft: #171512;
  --cream: #f2eadc;
  --text: rgba(242, 234, 220, 0.88);
  --muted: rgba(242, 234, 220, 0.62);
  --gold: #b88a3d;
  --line: rgba(242, 234, 220, 0.14);

  --max: 1180px;
  --pad: clamp(22px, 5vw, 72px);
  --section: clamp(72px, 9vw, 130px);
}

/* 2) RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 3) COMMON
========================================================= */

.container {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.section {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 36px;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.text {
  color: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid rgba(184, 138, 61, 0.55);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn:hover {
  border-color: var(--gold);
}

/* 4) HEADER
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 16, 14, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--cream);
  font-size: 1.12rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
}

.nav a {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--cream);
}

/* 5) HERO
========================================================= */

.hero {
  min-height: 100vh;
  padding: 76px 0 0;
  display: grid;
  align-items: stretch;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  min-height: calc(100vh - 76px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2));
  padding-right: clamp(28px, 4vw, 70px);
}

.hero-title {
  margin: 0;
  color: var(--cream);
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
 

}

.hero-subtitle {
  margin: 20px 0 28px;
  color: var(--gold);
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
}

.hero-text {
  max-width: 360px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);

  background:
    radial-gradient(circle at center, rgba(184, 138, 61, 0.10), transparent 62%),
    var(--bg-soft);
}

.hero-image img {
  width: 100%;
  max-width: 760px;

  max-height: 68vh;

  object-fit: contain;

  border: 1px solid rgba(184, 138, 61, 0.26);

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42);
}
/* 6) SELECTED WORKS
========================================================= */

.works-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.work-card {
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.work-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.work-card h3 {
  margin: 14px 14px 4px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

.work-card p {
  margin: 0 14px 16px;
  color: var(--muted);
  font-size: 0.86rem;
}


/* 7) ABOUT
========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.signature {
  margin-top: 34px;
  max-width: 260px;
  opacity: 0.9;
}

.about-image {
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* 8) FEATURED MINIATURE
========================================================= */

#miniature {
  padding-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 22px;
  
    align-items: start;
}

.feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #0b0a09;
}

.feature-large {
  grid-row: span 2;
}
.feature-small {
  margin: 0;
  background: #0b0a09;
  padding: 18px;
  border: 1px solid var(--line);
}

.feature-small img {
  height: 260px;
}


/*
.feature-small {
  display: contents;
   height: 260px;
    background: #0b0a09;
  padding: 18px;
}

.feature-small figure,
.feature-large {
  margin: 0;
} */

/* 9) EXHIBITIONS
========================================================= */
.solo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.solo-year {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.solo-year::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(184,138,61,.45);
  margin-top: 14px;
}

.solo-card h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.3;
}

.solo-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .92rem;
}

.solo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}


/* CONTACT
========================================================= */

#contact {
  margin-top: -120px;
}

.contact-section .section-title {
  margin-bottom: 24px;
   }


.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.72fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  margin-top: 70px;
}

.contact-info {
  max-width: 320px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a,
.contact-note {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.08rem;
}

.contact-note {
  margin: 0 0 18px;
}

.contact-photo img {
  width: 100%;
  max-width: 342px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.contact-map {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.contact-map iframe {
  width: 280px;
  height: 280px;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
}

.section-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity .25s ease;
}

.section-title a:hover {
  opacity: .72;
}
/* FOOTER
========================================================= */

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.copyright {
  margin: 0;

  text-align: center;

  color: rgba(242, 234, 220, 0.42);

  font-size: 0.82rem;

  letter-spacing: 0.04em;
}
/* 11) RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .section {
    scroll-margin-top: 90px;
  }

  #about,
  #works,
  #miniature,
  #exhibitions,
  #contact {
    padding-top: 60px;
  }

.site-header {
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
}
  .header-inner {
    padding: 18px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .logo {
    text-align: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .nav a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-copy {
    padding: 80px var(--pad) 56px;
  }

  .hero-image img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  

  .contact-photo img {
    max-width: 100%;
  }

  .contact-map {
    justify-content: flex-start;
  }
  .hero-grid,
.about-grid,
.feature-grid,
.solo-grid,
.contact-grid {
  grid-template-columns: 1fr;
}

.feature-large {
  grid-row: auto;
}

.feature-grid img,
.feature-small img {
  height: auto;
  max-height: none;
}
}
@media (max-width: 560px) {
  .works-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

}