:root{
  --ana:#1B1B1B;
  --zemin:#FFFFFF;
  --ikincil:#F3F3F3;
  --vurgulu:#D5CBB2;
  --hat:#C6C6C6;
  --font-stack:'Futura PT','Futura',system-ui,-apple-system,Arial,sans-serif;
}

html{box-sizing:border-box}
*,*:before,*:after{box-sizing:inherit}

body{
  margin:0;
  background:var(--zemin);
  color:var(--ana);
  font-family:var(--font-stack);
  font-size:17px;
  line-height:1.65;
}

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

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

.container{
  width:min(1180px,92%);
  margin:0 auto;
}

/* HEADER */

.site-header{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.header-inner,
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:26px 0;
}

.logo{
  font-size:20px;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:lowercase;
  white-space:nowrap;
}

.logo span{
  display:none;
}

.menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:34px;
}

.menu a{
  font-size:14px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  position:relative;
}

.menu a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:1px;
  background:var(--ana);
  transition:width .3s ease;
}

.menu a:hover:after,
.current-menu-item > a:after{
  width:100%;
}

.menu-toggle{
  display:none;
}

/* HERO */

.hero{
  position:relative;
  min-height:85vh;
  overflow:hidden;
}

.hero > img{
  width:100%;
  height:72vh;
  object-fit:cover;
  filter:saturate(.96);
}

.hero-caption{
  position:absolute;
  left:10%;
  bottom:10%;
  max-width:520px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(8px);
  padding:24px 28px;
  border:none;
}

.hero-caption h1{
  font-size:56px;
  line-height:1;
  margin:0 0 12px;
  font-weight:500;
}

.hero-caption p{
  font-size:18px;
  line-height:1.5;
  margin:0;
}

/* HOME */

.home-intro{
  margin-top:64px;
  margin-bottom:80px;
}

.home-intro .lead{
  max-width:780px;
  font-size:24px;
  line-height:1.45;
}

.home-projects,
.home-services,
.home-contact{
  margin-top:96px;
}

.home-projects h2,
.home-services h2,
.home-contact h2{
  font-size:32px;
  line-height:1.15;
  font-weight:500;
  margin-bottom:32px;
}

/* GRID / PROJECT CARDS */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:34px;
}

.project-card{
  transition:transform .35s ease;
}

.project-card:hover{
  transform:translateY(-4px);
}

.project-card img{
  width:100%;
  aspect-ratio:3/2;
  object-fit:cover;
}

.project-card h3{
  margin:14px 0 4px;
  font-size:20px;
  font-weight:500;
}

.project-card .meta{
  margin:0;
  font-size:14px;
  color:#777;
}

/* PROJECT SINGLE */

.project-single .project-header{
  margin:40px 0 32px;
}

.project-single h1{
  font-size:48px;
  line-height:1.05;
  margin-bottom:12px;
  font-weight:500;
}

.project-single .meta{
  color:#777;
}

.hero-media img{
  width:100%;
  max-height:720px;
  object-fit:cover;
}

.project-single .project-content{
  display:block;
  max-width:900px;
  margin:56px auto 0;
}

.project-text{
  font-size:18px;
  line-height:1.75;
}

.project-facts{
  border-top:1px solid var(--hat);
  padding-top:24px;
}

.project-facts h4{
  margin-top:0;
  font-size:16px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.project-facts ul{
  list-style:none;
  padding:0;
  margin:0;
}

.project-facts li{
  display:flex;
  justify-content:space-between;
  gap:24px;
  border-bottom:1px solid #eee;
  padding:14px 0;
}

.project-facts span{
  text-align:right;
  color:#666;
}

.project-nav{
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--hat);
  padding-top:32px;
  margin-top:72px;
}

/* PAGES */

.page h1{
  font-size:48px;
  line-height:1.05;
  font-weight:500;
  margin-bottom:36px;
}

.page h2{
  font-size:30px;
  line-height:1.2;
  font-weight:500;
  margin-top:56px;
}

.page h3{
  font-size:21px;
  line-height:1.3;
  font-weight:500;
  margin-top:32px;
}

.page p{
  max-width:820px;
}

.wp-block-separator{
  opacity:.25;
  margin:64px 0;
}

/* FOOTER */

.site-footer{
  margin-top:110px;
  border-top:1px solid var(--hat);
  padding:42px 0;
  font-size:15px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:40px;
  align-items:start;
}

.footer-brand strong{
  font-size:22px;
  font-weight:500;
  letter-spacing:.08em;
}

.footer-brand p,
.footer-contact p,
.footer-copy{
  margin:6px 0;
  color:#666;
}

.footer-copy{
  text-align:right;
}

/* MOBILE */

@media(max-width:768px){

  body{
    font-size:16px;
  }

.site-header .container{
  padding:12px 20px;
  min-height:72px;
}

  .logo{
    font-size:24px;
  }

  .menu-toggle{
    display:flex;
    flex-direction:column;
    gap:7px;
    width:34px;
    height:28px;
    border:0;
    background:transparent;
    padding:0;
  }

  .menu-toggle span{
    display:block;
    height:1px;
    width:34px;
    background:var(--ana);
  }

  .primary-nav{
    display:none;
    width:100%;
    margin-top:24px;
  }

  .primary-nav.is-open{
    display:block;
  }

  .primary-nav .menu{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .primary-nav .menu a{
    font-size:18px;
    letter-spacing:.06em;
  }

  .hero{
    min-height:70vh;
  }

  .hero > img{
    height:70vh;
    min-height:520px;
  }

.hero-caption{
  left:20px;
  right:20px;
  bottom:20px;
  padding:18px;
}

  .hero-caption h1{
    font-size:28px;
    margin-bottom:12px;
  }

  .hero-caption p{
    font-size:15px;
    line-height:1.45;
  }

  .home-intro{
    margin-top:44px;
    margin-bottom:60px;
  }

  .home-intro .lead{
    font-size:20px;
    line-height:1.55;
  }

  .home-projects,
  .home-services,
  .home-contact{
    margin-top:72px;
  }

  .project-single .project-content{
    grid-template-columns:1fr;
    gap:36px;
  }

  .project-single h1,
  .page h1{
    font-size:36px;
  }

  .page h2{
    font-size:26px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-copy{
    text-align:left;
  }
}
/* MOBILE MENU FINAL */

@media (max-width:768px){

  body.menu-open{
    overflow:hidden;
    position:fixed;
    width:100%;
  }

  .site-header{
    position:relative;
    z-index:1000;
  }

  .menu-toggle{
    display:flex;
    flex-direction:column;
    gap:7px;
    width:34px;
    height:28px;
    border:0;
    background:transparent;
    padding:0;
    position:relative;
    z-index:1001;
  }

  .primary-nav{
    display:none;
  }

.primary-nav.is-open{
    display:flex;
    position:fixed;
    inset:0;
    width:100vw;
    height:100vh;
    background:#fff;
    z-index:999;
    align-items:center;
    justify-content:center;
    padding-top:40px;
}

  .primary-nav.is-open .menu{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:34px;
  }

  .primary-nav.is-open .menu a{
	padding-top:40px;
    font-size:26px;
    letter-spacing:.08em;
  }

  body.menu-open .menu-toggle span{
    display:none;
  }

body.menu-open .menu-toggle{
    position:fixed;
    top:22px;
    right:20px;
    z-index:1002;
}

body.menu-open .menu-toggle{
  position:fixed;
  top:22px;
  right:20px;
  z-index:1002;
}

body.menu-open .menu-toggle::after{
  content:"×";
  font-size:44px;
  line-height:1;
  color:var(--ana);
}

  .breadcrumb{
    font-size:14px;
    line-height:1.4;
	color:#888;
	margin-bottom:24px;
}
/* MOBILE SINGLE PROJECT REFINEMENTS */

@media (max-width:768px){

  .project-single .project-header{
    margin:28px 0 24px;
  }

  .project-single h1{
    font-size:38px;
    line-height:1.05;
    margin:0 0 10px;
  }

  .project-single .meta{
    font-size:18px;
    line-height:1.35;
  }

  .hero-media img{
	max-height:620px;
  }

  .project-single .project-content{
    margin-top:36px;
  }

  .project-text{
    font-size:16px;
    line-height:1.75;
  }

  .project-nav{
    margin-top:52px;
    padding-top:24px;
    gap:20px;
  }
}
.project-info-block{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px 48px;
  margin:48px 0;
  padding:32px 0;
  border-top:1px solid var(--hat);
  border-bottom:1px solid var(--hat);
}

.project-info-block span{
  display:block;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#777;
  margin-bottom:6px;
}

.project-info-block strong{
  display:block;
  font-size:18px;
  font-weight:500;
  line-height:1.35;
}

@media(max-width:768px){
  .project-info-block{
    grid-template-columns:1fr 1fr;
    gap:24px 28px;
    margin:40px 0;
    padding:28px 0;
  }

  .project-info-block strong{
    font-size:17px;
  }
}
	@media(max-width:768px){

  .project-card img{
    aspect-ratio:3/2;
    object-fit:cover;
  }

  .project-card h3{
    font-size:20px;
    margin-top:12px;
  }

  .project-card .meta{
    font-size:15px;
  }
}
	/* RELATED PROJECTS */

.related-projects{
  margin-top:96px;
  padding-top:48px;
  border-top:1px solid var(--hat);
}

.related-projects h2{
  font-size:30px;
  line-height:1.2;
  font-weight:500;
  margin:0 0 32px;
}

@media(max-width:768px){
  .related-projects{
    margin-top:64px;
    padding-top:36px;
  }

  .related-projects h2{
    font-size:26px;
    margin-bottom:24px;
  }
}/* PROJECT CONTENT ALIGNMENT */

.project-single .project-content{
  display:block;
  max-width:900px;
  margin:56px auto 0;
}

.project-text{
  width:100%;
}

.project-text h2,
.project-text h3,
.project-text p,
.project-text ul,
.project-text ol{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.project-text img,
.project-text figure,
.project-text .wp-block-image{
  width:100%;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.project-text .wp-block-image img{
  width:100%;
  height:auto;
  object-fit:cover;
}.project-text{
  width:100%;
}

.project-text > *{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.project-text .wp-block-image,
.project-text figure,
.project-text img{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.project-text .wp-block-image img{
  width:100%;
  height:auto;
}